1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# This file is public domain software, originally written by Joey Hess.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
CONFIGURE_OPTS := --prefix=/usr --datarootdir=/usr/share/games
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CONFIGURE_OPTS += --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --enable-debug
endif
%:
dh $@ --parallel --with autoreconf
override_dh_auto_configure:
dh_auto_configure -- $(CONFIGURE_OPTS)
override_dh_auto_install:
dh_installchangelogs ChangeLog
ifneq (,$(findstring bzflag-server, $(shell dh_listpackages)))
misc/copyplugindocs debian/bzflag-server/usr/share/doc/bzflag-server/plugins/
dh_installinit -pbzflag-server --name=bzflag
endif
dh_auto_install
override_dh_install:
dh_install
# Remove the DejaVu.License file installed by the wildcard in
# bzflag-data.install
rm -f debian/bzflag-data/usr/share/games/bzflag/fonts/DejaVu.License
override_dh_fixperms:
dh_fixperms
ifneq (,$(findstring bzflag-server, $(shell dh_listpackages)))
chown -R games:games debian/bzflag-server/var/log/bzflag
endif
|