Add libzstd to script/linux (#8780)
add a missing dependency to linux script
This commit is contained in:
parent
9095a6b04e
commit
37ffa86043
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue