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
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export QT_SELECT=qt5
export CMAKE_INSTALL_PREFIX=/usr
%:
dh $@
override_dh_auto_configure:
STRIP=true dh_auto_configure
override_dh_auto_install:
destdir=$(CURDIR)/debian/xca dh_auto_install
override_dh_auto_build:
dh_auto_build -- all
override_dh_auto_test:
@echo "Skipping automatic tests due to the GUI tests not working during build."
@echo "Note that test suites run manually to verify program integrity after build by Maintainer."
ORIG=${DEB_SOURCE}_${DEB_VERSION_UPSTREAM}
get-orig-source:
git archive --format=tar upstream/${DEB_VERSION_UPSTREAM} --prefix=${ORIG}/ | gzip -9 > ../${ORIG}.orig.tar.gz
|