1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
--prefix=/usr \
--bindir=/usr/games \
--datadir=/usr/share/games
override_dh_install:
dh_install
# Do not install html documentation to /usr/share/games/njam but to
# /usr/share/doc/njam/html/ in njam-data package
rm -rf $(CURDIR)/debian/njam-data/usr/share/games/njam/html
rm -f $(CURDIR)/debian/njam-data/usr/share/games/njam/README
rm -f $(CURDIR)/debian/njam-data/usr/share/games/njam/njam.iss
|