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 DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,--as-needed
CHECK_HOME = $(CURDIR)/debian/tmp/home
GPGME_LOG = $(CURDIR)/debian/tmp/gpgme.log
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
--without-python \
--with-python3
execute_before_dh_install:
find debian/tmp -name '*.la' -print -delete
override_dh_auto_test:
ifeq (, $(filter nocheck, $(DEB_BUILD_OPTIONS)))
mkdir -p $(CHECK_HOME)
HOME=$(CHECK_HOME) GPGME_DEBUG=9:$(GPGME_LOG) make check || { cat $(GPGME_LOG); exit 1; }
endif
override_dh_makeshlibs:
dh_makeshlibs -- -c4
|