Update linux deps to include opensuse (#8127)
Release Notes: - Added support for openSuse to Linux dependency installer script.
This commit is contained in:
parent
6e897d9969
commit
266bb62813
1 changed files with 16 additions and 0 deletions
16
script/linux
16
script/linux
|
@ -35,6 +35,22 @@ if [[ -n $dnf ]]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
# openSuse
|
||||
# https://software.opensuse.org/
|
||||
zyp=$(command -v zypper || true)
|
||||
if [[ -n $zyp ]]; then
|
||||
deps=(
|
||||
alsa-devel
|
||||
fontconfig-devel
|
||||
vulkan-validationlayers
|
||||
wayland-devel
|
||||
libxkbcommon-x11-devel
|
||||
openssl-devel
|
||||
)
|
||||
$maysudo "$zyp" install -y "${deps[@]}"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Arch, Manjaro, etc.
|
||||
# https://archlinux.org/packages
|
||||
pacman=$(command -v pacman || true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue