Last change
on this file since 93afab8 was
57728c1,
checked in by Mateusz Hromada <ruanda@…>, 15 years ago
|
Move old files to _old dir.
|
-
Property mode set to
100644
|
File size:
606 bytes
|
Rev | Line | |
---|
[25ae32e] | 1 | # this makefile will build rpm |
---|
| 2 | |
---|
| 3 | DIR=$(shell pwd) |
---|
| 4 | |
---|
[b2647de] | 5 | ifndef UTT_DIST_DIR |
---|
| 6 | UTT_DIST_DIR=${DIR} |
---|
[25ae32e] | 7 | endif |
---|
| 8 | |
---|
[b2647de] | 9 | _RPM_FROOT=${DIR}/rmp_root |
---|
| 10 | _UTT_ROOT=${_RPM_FROOT}/usr/local |
---|
[25ae32e] | 11 | # default task |
---|
| 12 | .PHONY: rpm |
---|
| 13 | rpm: |
---|
[b2647de] | 14 | if test -d ${_RPM_FROOT}; then rm -fr ${_RMP_FROOT}; fi |
---|
| 15 | mkdir -p ${_UTT_ROOT} |
---|
| 16 | cp -rf ${UTT_DIST_DIR}/* ${_UTT_ROOT}/ |
---|
[9b57c4d] | 17 | mkdir -p ${_UTT_ROOT}/cnf |
---|
| 18 | mv ${_UTT_ROOT}/etc/utt/*.conf ${_UTT_ROOT}/cnf/ |
---|
| 19 | ${DIR}/../common/prepare_conf.sh ${_UTT_ROOT}/cnf ${_UTT_ROOT}/etc/utt \\\/usr\\\/local |
---|
| 20 | rm -rf ${_UTT_ROOT}/cnf |
---|
| 21 | |
---|
[b2647de] | 22 | cp ../files/* ${_UTT_ROOT}/ |
---|
| 23 | cd ${_RPM_FROOT}; rpmbuild -bb ${DIR}/utt.spec |
---|
| 24 | |
---|
| 25 | rm -rf ${_RPM_FROOT} |
---|
[25ae32e] | 26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.