1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-25 21:07:39 +03:00

get-deps: fix void linux deps

This commit is contained in:
lincot 2022-10-04 13:24:27 +03:00 committed by Wez Furlong
parent 2cae10016f
commit 6d0e3d9caf

View File

@ -247,22 +247,19 @@ gentoo_deps() {
void_deps() { void_deps() {
XBPS="$SUDO xbps-install" XBPS="$SUDO xbps-install"
$XBPS -S \ $XBPS -S \
'base-devel' \ 'gcc' \
'cargo' \
'cmake' \
'fontconfig' \
'git' \
'hicolor-icon-theme' \
'libX11' \
'libxkbcommon-x11' \
'pkgconf' \ 'pkgconf' \
'python3' \ 'fontconfig-devel' \
'rust' \ 'openssl-devel' \
'wayland' \ 'wayland-devel' \
'xcb-util' \ 'libX11-devel' \
'xcb-util-image' \ 'libxkbcommon-devel' \
'xcb-util-keysyms' \ 'xcb-util-devel' \
'xcb-util-wm' 'xcb-util-image-devel'
if ! test_cmd 'cargo'; then
$XBPS -S 'cargo'
fi
if test_flag; then if test_flag; then
$XBPS -S \ $XBPS -S \