2016-12-07 15:19:58 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2017-10-30 08:35:12 +02:00
|
|
|
# Hardening options, see: https://wiki.debian.org/Hardening
|
2016-12-07 15:19:58 +02:00
|
|
|
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
|
|
|
|
|
2022-05-25 05:26:27 -05:00
|
|
|
# Help makes build paths reproducible
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS=buildinfo=+path
|
2020-12-06 16:11:24 -05:00
|
|
|
|
2016-12-07 15:19:58 +02:00
|
|
|
%:
|
2024-10-15 23:02:55 -05:00
|
|
|
dh $@ --with kf6 --buildsystem kf6
|
2016-12-07 15:19:58 +02:00
|
|
|
|
|
|
|
override_dh_auto_configure:
|
2025-02-20 17:38:12 -06:00
|
|
|
dh_auto_configure -- -DWITH_PYBIND11=OFF -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DBUILD_APPDATA=ON -DBUILD_APPSTREAM=ON -DINSTALL_COMPLETION=ON -DWITH_QT6=ON
|
2017-10-18 08:57:06 +02:00
|
|
|
|
2017-10-30 08:35:12 +02:00
|
|
|
# Some test don't work well, we don't need to run them at package build time.
|
2017-10-18 08:57:06 +02:00
|
|
|
override_dh_auto_test:
|