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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DEB_LDFLAGS_MAINT_APPEND := -Wl,--as-needed
DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
ifeq ($(DEB_HOST_ARCH_CPU),$(findstring $(DEB_HOST_ARCH_CPU),amd64 i386))
VC_DEV_VERSION = $(shell dpkg-query -Wf '$${source:Package} (= $${source:Version})' vc-dev)
else
VC_DEV_VERSION =
endif
%:
dh $@ --with kf5
override_dh_auto_configure:
dh_auto_configure -Skf5 -- -DFOUNDATION_BUILD=OFF -DBUILD_TESTING=OFF
override_dh_auto_install:
dh_auto_install
# remove symlinks of private libraries
find debian/tmp -name '*.so' -type l -print -delete
override_dh_gencontrol:
dh_gencontrol -pkrita -- -Vvc:Built-Using='$(VC_DEV_VERSION)'
dh_gencontrol --remaining-packages
.PHONY: override_dh_auto_test
|