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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/usr/bin/make -f
# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# Ensure that we link against all needed libraries (cf. Policy 10.2)
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs
DEB_BUILD_ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH)
# verbose testsuite results (#754692)
export VERBOSE=1
%:
dh $@ --parallel --with autoreconf
override_dh_auto_configure:
dh_auto_configure -- \
--disable-static
override_dh_auto_build-indep:
$(MAKE) doxygen
rm docs/html/*.md5
# don't make the testsuite fail the build on GNU/Hurd, 4 of 8 tests fail
ifneq ($(filter $(DEB_BUILD_ARCH), kfreebsd-amd64 kfreebsd-i386 hurd-i386),)
override_dh_auto_test:
-dh_auto_test
endif
# The check or install target would unnecessarily build the software
override_dh_auto_test-indep:
override_dh_auto_install-indep:
override_dh_auto_install-arch:
dh_auto_install
rm -v debian/tmp/usr/lib/*/lib*.la
cd debian/tmp/usr/share/doc/libqb && \
rm -v COPYING INSTALL README.markdown
override_dh_installdocs:
dh_installdocs -A README.markdown
override_dh_install:
dh_install --fail-missing
override_dh_strip:
dh_strip --dbgsym-migration='libqb0-dbg (<< 1.0-1~)'
|