1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-03 03:04:04 +03:00

wezterm: teach get-deps about Arch

This commit is contained in:
Wez Furlong 2020-06-07 10:57:41 -07:00
parent 5d5083501e
commit 76a1300c15

View File

@ -54,6 +54,25 @@ if test -e /etc/debian_version ; then
exit $?
fi
if test -e /etc/arch-release ; then
pacman -S --noconfirm --needed
'cargo' \
'cmake' \
'dbus' \
'fontconfig' \
'git' \
'hicolor-icon-theme' \
'libx11' \
'libxkbcommon-x11' \
'pkgconf' \
'python3' \
'rust' \
'wayland' \
'xcb-util-keysyms' \
'xcb-util-wm'
exit $?
fi
case $OSTYPE in
darwin*|msys)
exit 0