source: app/dist/spec/Makefile @ 9b57c4d

help
Last change on this file since 9b57c4d was 9b57c4d, checked in by pawelk <pawelk@…>, 16 years ago

Kilka zmian technicznych, troche porzadku oraz uaktualnienie dystrybucji dla rpma.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@48 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 606 bytes
Line 
1# this makefile will build rpm
2
3DIR=$(shell pwd)
4
5ifndef UTT_DIST_DIR
6        UTT_DIST_DIR=${DIR}
7endif
8
9_RPM_FROOT=${DIR}/rmp_root
10_UTT_ROOT=${_RPM_FROOT}/usr/local
11# default task
12.PHONY: rpm
13rpm:
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}/
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
22        cp ../files/* ${_UTT_ROOT}/
23        cd ${_RPM_FROOT}; rpmbuild -bb ${DIR}/utt.spec
24       
25        rm -rf ${_RPM_FROOT}
26       
Note: See TracBrowser for help on using the repository browser.