1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# Make sure lintian does not complain about missing hardenings
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
# Force single binary mode, as the second binary package (fuseiso9660) is
# a transitional package only containing some doc files.
# See https://manpages.debian.org/debhelper/dh_auto_install.1
# and https://manpages.debian.org/debhelper/dh.1.#DEBHELPER_PROVIDED_DH_ADDONS
override_dh_auto_install:
dh_auto_install --destdir=debian/fuseiso
|