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
#export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
override_dh_autoreconf:
dh_autoreconf ./autogen.sh
override_dh_auto_build-arch:
dh_auto_build -- all
$(MAKE) -C doc info
override_dh_auto_build-indep:
dh_auto_build -- -C doc html pdf
override_dh_install:
dh_install
# Remove generated Makefile, which contains variable build
# paths and binary paths.
rm -f debian/libforms-doc/usr/share/doc/libforms-doc/html/xforms_images/Makefile
override_dh_auto_test-indep:
override_dh_auto_install-indep:
|