We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c4446d commit 4546668Copy full SHA for 4546668
1 file changed
linux.d/debian
@@ -25,14 +25,20 @@ REQUIRED_DEV_PACKAGES=(
25
libxkbcommon-dev
26
libtool
27
libunwind-dev
28
- libfuse2
29
texinfo
30
nasm
31
yasm
32
libx264-dev
33
libbz2-dev
34
)
35
+# libfuse2 was renamed to libfuse2t64 in Debian Trixie (t64 transition)
36
+if apt-cache show libfuse2t64 &>/dev/null 2>&1; then
37
+ REQUIRED_DEV_PACKAGES+=(libfuse2t64)
38
+else
39
+ REQUIRED_DEV_PACKAGES+=(libfuse2)
40
+fi
41
+
42
if [[ -n "$UPDATE_LIB" ]]
43
then
44
REQUIRED_DEV_PACKAGES+=(libwebkit2gtk-4.1-dev)
0 commit comments