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 31 32 33 34 35 36 37 38
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
libpkgs_gen_strict_local_shlibs = $(libpkgs_all_packages)
include /usr/share/pkg-kde-tools/qt-kde-team/3/library-packages.mk
# workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119015
ifneq (,$(filter $(DEB_HOST_ARCH), armhf))
export DEB_CXXFLAGS_MAINT_APPEND += -Os
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -Skf6 -- -DWITH_DESIGNER_PLUGIN=ON \
-DMARBLE_INSTALL_ANDROID_APPS=ON \
-DBUILD_QT_AND_KDE=ON \
-DBUILD_TOUCH=ON \
-DBUILD_MARBLE_TESTS=FALSE \
$(conf_args)
execute_after_dh_auto_install:
# remove extra license files
rm -f debian/tmp/usr/share/marble/data/LICENSE.txt
rm -rf debian/tmp/usr/share/marble/data/licenses/
override_dh_auto_test:
# Disable the auto tests at build time
:
override_dh_clean:
dh_clean -Xdata/mwdbii/PISLAND.PNT.orig -Xdata/mwdbii/PLAKE.PNT.orig
override_dh_gencontrol-arch: libpkgs_gen_strict_local_shlibs
dh_sameversiondep -a
dh_gencontrol -a
|