| author | melunko |
| Fri Mar 14 13:14:54 2008 +0000 (2008-03-14) | |
| branch | trunk |
| changeset 946 | f9e14ee50af6 |
| permissions | -rwxr-xr-x |
| renatofilho@905 | 1 |
#!/usr/bin/make -f |
| renatofilho@905 | 2 |
# -*- makefile -*- |
| renatofilho@905 | 3 |
|
| renatofilho@905 | 4 |
# Uncomment this to turn on verbose mode. |
| renatofilho@905 | 5 |
#export DH_VERBOSE=1 |
| renatofilho@905 | 6 |
|
| renatofilho@905 | 7 |
PYVER=2.5 |
| renatofilho@905 | 8 |
PYTHON=python$(PYVER) |
| renatofilho@905 | 9 |
|
| renatofilho@905 | 10 |
PREFIX=debian/tmp |
| renatofilho@905 | 11 |
|
| renatofilho@905 | 12 |
build: build-stamp |
| renatofilho@905 | 13 |
|
| renatofilho@905 | 14 |
build-stamp: |
| renatofilho@905 | 15 |
touch build-stamp |
| renatofilho@905 | 16 |
|
| renatofilho@905 | 17 |
clean: |
| renatofilho@905 | 18 |
dh_testdir |
| renatofilho@905 | 19 |
dh_testroot |
| renatofilho@905 | 20 |
rm -f build-stamp |
| renatofilho@905 | 21 |
dh_clean |
| renatofilho@905 | 22 |
|
| renatofilho@905 | 23 |
install: build |
| renatofilho@905 | 24 |
dh_testdir |
| renatofilho@905 | 25 |
dh_testroot |
| renatofilho@905 | 26 |
dh_installdirs |
| renatofilho@905 | 27 |
dh_clean -k |
| renatofilho@905 | 28 |
|
| renatofilho@905 | 29 |
@rm -rf build |
| renatofilho@905 | 30 |
@$(PYTHON) setup.py install --prefix=$(PREFIX)/usr --no-compile --install-purelib=$(PREFIX)/usr/share/gms |
| renatofilho@905 | 31 |
install -D -o root -g root -m 755 $(PREFIX)/usr/etc/init.d/gmsd debian/$(cdbs_curpkg)/etc/init.d/gmsd |
| renatofilho@905 | 32 |
install -D -o root -g root -m 755 $(PREFIX)/usr/etc/gms/server.conf debian/$(cdbs_curpkg)/etc/gms/server.conf |
| renatofilho@905 | 33 |
|
| renatofilho@905 | 34 |
dh_install |
| renatofilho@905 | 35 |
|
| renatofilho@905 | 36 |
# Build architecture-independent files here. |
| renatofilho@905 | 37 |
binary-indep: build install |
| renatofilho@905 | 38 |
dh_testdir |
| renatofilho@905 | 39 |
dh_testroot |
| renatofilho@905 | 40 |
dh_installchangelogs |
| renatofilho@905 | 41 |
dh_installdocs |
| renatofilho@905 | 42 |
dh_strip |
| renatofilho@905 | 43 |
dh_compress |
| renatofilho@905 | 44 |
dh_fixperms |
| renatofilho@905 | 45 |
dh_installdeb |
| renatofilho@905 | 46 |
dh_gencontrol |
| renatofilho@905 | 47 |
dh_md5sums |
| renatofilho@905 | 48 |
dh_builddeb |
| renatofilho@905 | 49 |
|
| renatofilho@905 | 50 |
binary: binary-indep |
| renatofilho@905 | 51 |
.PHONY: clean binary-indep binary install |
| renatofilho@905 | 52 |