1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# -*- makefile -*-
export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=+lto
ifeq ($(DEB_TARGET_ARCH),arm64)
DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,gcs-report-dynamic=none
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DBUILD_QCH=ON -DBUILD_TESTING=OFF -DKF6_COMPAT_BUILD=ON
override_dh_shlibdeps:
dh_shlibdeps $(patsubst %,-p%,$(filter lib%,$(shell dh_listpackages))) -- -xkio
dh_shlibdeps --remaining-packages
override_dh_auto_test:
# Disable dh_auto_test at build time
:
|