We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee0c45 commit 6370cefCopy full SHA for 6370cef
ubuntu_debian
@@ -40,7 +40,8 @@ RUN if [ "$SUITE" != "buster" ] && [ "$SUITE" != "focal" ] && [ "$QT_VERSION" =
40
echo "deb http://deb.debian.org/debian bullseye-backports main contrib non-free" | tee -a /etc/apt/sources.list; \
41
$APT_UPDATE; \
42
fi; \
43
- $APT_INSTALL qt6-base-dev libqt6serialport6-dev libqt6sql6-sqlite libxkbcommon-dev libvulkan-dev libgl1-mesa-dev; \
+ if [ "$SUITE" = "trixie" ]; then SERIALPORT="qt6-serialport-dev"; else SERIALPORT="libqt6serialport6-dev"; fi; \
44
+ $APT_INSTALL qt6-base-dev $SERIALPORT libqt6sql6-sqlite libxkbcommon-dev libvulkan-dev libgl1-mesa-dev; \
45
else \
46
$APT_INSTALL qtbase5-dev libqt5serialport5-dev libqt5sql5-sqlite libqt5svg5-dev; \
47
fi
0 commit comments