fix: vulkan dependencies in script/linux (#9116)

Just a quick pull request and a small fix, someone reported a dependency
was erroring for him, so I decided to open a small pull request. On top
of that, any `devel` header is not needed because Vulkan is only a
runtime dependency.

Release Notes:

- Fixed names of Vulkan dependencies that didn't exist
This commit is contained in:
Mart Zielman 2024-03-11 16:29:06 +01:00 committed by GitHub
parent a04932c4eb
commit 0be20d0817
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ if [[ -n $apt ]]; then
libxkbcommon-x11-dev
libssl-dev
libzstd-dev
libvulkan-dev
libvulkan1
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0
@ -31,7 +31,7 @@ if [[ -n $dnf ]]; then
libxkbcommon-x11-devel
openssl-devel
libzstd-devel
libvulkan-devel
vulkan-loader
)
$maysudo "$dnf" install -y "${deps[@]}"
exit 0
@ -48,7 +48,7 @@ if [[ -n $zyp ]]; then
libxkbcommon-x11-devel
openssl-devel
libzstd-devel
libvulkan-devel
vulkan-loader
)
$maysudo "$zyp" install -y "${deps[@]}"
exit 0
@ -82,7 +82,7 @@ if [[ -n $xbps ]]; then
libzstd-devel
openssl-devel
wayland-devel
libvulkan-devel
vulkan-loader
)
$maysudo "$xbps" -Syu "${deps[@]}"
exit 0