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
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
DEB_BUILD_MAINT_OPTIONS += hardening=+all
%:
dh $@
.PHONY: override_dh_auto_configure
override_dh_autoreconf: bootstrap
dh_autoreconf ${<D}/${<F}
override_dh_auto_configure:
dh_auto_configure -- \
--bindir=/usr/games \
--datadir=/usr/share/games \
--with-cflags="$(CFLAGS)" \
--with-cxxflags="$(CXXFLAGS)" \
#EOL
override_dh_missing:
rm -f debian/tmp/var/games/*/*/highscores
rm -f debian/tmp/usr/lib/*/*/lib*.a
dh_missing --fail-missing
|