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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --no-parallel
# Temporary workaround for dh_autoreconf error on runstatedir
# To whoever see it: please submit a patch to fix it!
override_dh_auto_configure:
DH_COMPAT=10 dh_auto_configure
override_dh_auto_install:
dh_auto_install
rm -fv debian/tmp/usr/lib/*/*.la
rm -fv debian/tmp/usr/share/man/man1/explain_license.1
rm -fv debian/tmp/usr/share/man/man3/explain_license.3
override_dh_missing:
dh_missing --fail-missing
override_dh_compress:
dh_compress --exclude=.pdf
|