Skip to content

Commit 6370cef

Browse files
committedNov 8, 2024·
Install qt6-serialport package on Debian Trixie
1 parent cee0c45 commit 6370cef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎ubuntu_debian

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ RUN if [ "$SUITE" != "buster" ] && [ "$SUITE" != "focal" ] && [ "$QT_VERSION" =
4040
echo "deb http://deb.debian.org/debian bullseye-backports main contrib non-free" | tee -a /etc/apt/sources.list; \
4141
$APT_UPDATE; \
4242
fi; \
43-
$APT_INSTALL qt6-base-dev libqt6serialport6-dev libqt6sql6-sqlite libxkbcommon-dev libvulkan-dev libgl1-mesa-dev; \
43+
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; \
4445
else \
4546
$APT_INSTALL qtbase5-dev libqt5serialport5-dev libqt5sql5-sqlite libqt5svg5-dev; \
4647
fi

0 commit comments

Comments
 (0)
Please sign in to comment.