From: IOhannes m zmölnig (Debian/GNU) Date: Mon, 25 Sep 2023 11:15:43 +0000 (+0200) Subject: Properly add the missing qml6-modules to the dependencies X-Git-Tag: archive/raspbian/2.5.1+ds-1+rpi1~1^2~43 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7a58ccb87c96f241f80213c503732251e80ca015;p=jacktrip.git Properly add the missing qml6-modules to the dependencies Gbp-Dch: ignore --- diff --git a/debian/control b/debian/control index ae13c97..d350db5 100644 --- a/debian/control +++ b/debian/control @@ -17,9 +17,9 @@ Build-Depends: qt6-base-dev, qt6-declarative-dev, qt6-networkauth-dev, - qt6-svg-dev, + qt6-svg-dev [amd64 arm64 armhf i386], qt6-webengine-dev [amd64 arm64 armhf i386], - qt6-websockets-dev, + qt6-websockets-dev [amd64 arm64 armhf i386], Standards-Version: 4.6.2 Rules-Requires-Root: no Homepage: https://github.com/jacktrip/jacktrip/ diff --git a/debian/rules b/debian/rules index 18f4c34..9d98e23 100755 --- a/debian/rules +++ b/debian/rules @@ -12,9 +12,16 @@ CONFIG_gui = -Dnogui=false -Drtaudio=enabled ifeq ($(strip $(filter $(DEB_HOST_ARCH), amd64 arm64 armhf i386)),) CONFIG += -Dnovs=true -#else -#QT_DEPENDS = \ -# qml6-module-qtquick-controls qml6-module-qtqml-workerscript qml6-module-qtquick-templates qml6-module-qtquick-layouts qml6-module-qt5compat-graphicaleffects qml6-module-qtwebchannel qml6-module-qtwebengine +else +QT_DEPENDS = \ + qml6-module-qt5compat-graphicaleffects, \ + qml6-module-qtqml-workerscript, \ + qml6-module-qtquick-controls, \ + qml6-module-qtquick-layouts, \ + qml6-module-qtquick-templates, \ + qml6-module-qtquick-window, \ + qml6-module-qtwebchannel, \ + qml6-module-qtwebengine endif