mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 09:44:46 +03:00
Add Gentoo support to Linux dependency script (#11141)
This PR adds dependencies for Gentoo Linux. Release Notes: - N/A
This commit is contained in:
parent
6ab9c3c3ab
commit
ce643e6bef
18
script/linux
18
script/linux
@ -102,4 +102,22 @@ if [[ -n $xbps ]]; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Gentoo
|
||||||
|
# https://packages.gentoo.org/
|
||||||
|
emerge=$(command -v emerge || true)
|
||||||
|
if [[ -n $emerge ]]; then
|
||||||
|
deps=(
|
||||||
|
app-arch/zstd
|
||||||
|
dev-libs/openssl
|
||||||
|
dev-libs/wayland
|
||||||
|
media-libs/alsa-lib
|
||||||
|
media-libs/fontconfig
|
||||||
|
media-libs/vulkan-loader
|
||||||
|
x11-libs/libxcb
|
||||||
|
x11-libs/libxkbcommon
|
||||||
|
)
|
||||||
|
$maysudo "$emerge" -u "${deps[@]}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Unsupported Linux distribution in script/linux"
|
echo "Unsupported Linux distribution in script/linux"
|
||||||
|
Loading…
Reference in New Issue
Block a user