Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripts/install_linux_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ DISTRIB=$ID
ARCH_DEPS="expect jq autoconf shellcheck sqlite python-virtualenv"
UBUNTU_DEPS="libtool expect jq autoconf automake shellcheck sqlite3 python3-venv build-essential"
FEDORA_DEPS="expect jq autoconf ShellCheck sqlite python-virtualenv"
OPENSUSE_TUMBLEWEED_DEPS="make gcc-c++ python3 glibc-devel-static libtool expect jq autoconf ShellCheck sqlite3 python312-virtualenv"

case $DISTRIB in
case $DISTRIB in
"arch" | "manjaro")
pacman -S --refresh --needed --noconfirm $ARCH_DEPS
;;
"fedora")
dnf -y install $FEDORA_DEPS
;;
"opensuse-tumbleweed")
zypper --non-interactive install $OPENSUSE_TUMBLEWEED_DEPS
;;
*)
apt-get update
apt-get -y install $UBUNTU_DEPS
Expand Down