diff --git a/get-deps b/get-deps index 7eb93334b..1db4d7b7c 100755 --- a/get-deps +++ b/get-deps @@ -244,6 +244,32 @@ gentoo_deps() { done } +void_deps() { + XBPS="$SUDO xbps-install" + $XBPS -S \ + 'base-devel' \ + 'cargo' \ + 'cmake' \ + 'fontconfig' \ + 'git' \ + 'hicolor-icon-theme' \ + 'libX11' \ + 'libxkbcommon-x11' \ + 'pkgconf' \ + 'python3' \ + 'rust' \ + 'wayland' \ + 'xcb-util' \ + 'xcb-util-image' \ + 'xcb-util-keysyms' \ + 'xcb-util-wm' + + if test_flag; then + $XBPS -S \ + 'openssh' + fi +} + fallback_method() { if test -e /etc/alpine-release; then alpine_deps @@ -305,6 +331,9 @@ case $ID in gentoo) gentoo_deps ;; + void) + void_deps + ;; *) echo "Couldn't find OS by ID, found ID: $ID" echo "Fallback to detecting '/etc/-release'"