1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
execute_before_dh_auto_clean:
test -e Makefile.inc || touch Makefile.inc
execute_after_dh_auto_clean:
rm -f Makefile.inc
override_dh_auto_configure:
dh_auto_configure -- --disable-blacklist
override_dh_auto_install:
# install to debian/tmp so we can pick only what we need
dh_auto_install --destdir=debian/tmp
# the tests are only for things we do not ship
override_dh_auto_test:
|