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
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# conflicts with old calligra-l10n
# (mostly copied from l10n-packages.mk in pkg-kde-tools)
l10npkgs_firstversion_ok := 1:3.1.0~
l10npkgs_prefix := calligra-l10n
l10npkgs_fixed_version_comma := (<< $(l10npkgs_firstversion_ok)),
# the list of languages in calligra < 3.1
l10npkgs_langs := bs ca cavalencia cs da de el engb es et eu fi fr gl hu it ja kk nb nds nl pl pt ptbr ru sk sv tr uk zhcn zhtw
l10npkgs_packages_rels := $(patsubst %,$(l10npkgs_prefix)-% $(l10npkgs_fixed_version_comma),$(l10npkgs_langs))
%:
dh $@ --with kf5
override_dh_auto_configure:
dh_auto_configure -Skf5 -- -DBUILD_TESTING=OFF
execute_after_dh_auto_install:
# remove symlinks of private libraries
find debian/calligraplan -name '*.so' -type l -print -delete
override_dh_gencontrol:
dh_gencontrol -- -Vplan:oldLangs='$(l10npkgs_packages_rels)'
.PHONY: override_dh_auto_test
|