Add libzstd to script/linux (#8780)

add a missing dependency to linux script
This commit is contained in:
aryal
2024-03-03 11:21:36 -08:00
committed by GitHub
parent 9095a6b04e
commit 37ffa86043
+5
View File
@@ -13,6 +13,7 @@ if [[ -n $apt ]]; then
libwayland-dev
libxkbcommon-x11-dev
libssl-dev
libzstd-dev
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0
@@ -28,6 +29,7 @@ if [[ -n $dnf ]]; then
wayland-devel
libxkbcommon-x11-devel
openssl-devel
libzstd-devel
)
$maysudo "$dnf" install -y "${deps[@]}"
exit 0
@@ -43,6 +45,7 @@ if [[ -n $zyp ]]; then
wayland-devel
libxkbcommon-x11-devel
openssl-devel
libzstd-devel
)
$maysudo "$zyp" install -y "${deps[@]}"
exit 0
@@ -58,6 +61,7 @@ if [[ -n $pacman ]]; then
wayland
libxkbcommon-x11
openssl
libzstd
)
$maysudo "$pacman" -S --needed --noconfirm "${deps[@]}"
exit 0
@@ -73,6 +77,7 @@ if [[ -n $xbps ]]; then
wayland-devel
libxkbcommon-devel
openssl-devel
libzstd-devel
)
$maysudo "$xbps" -Syu "${deps[@]}"
exit 0