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
3 changes: 3 additions & 0 deletions scripts/install_linux_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ DISTRIB=$ID

ARCH_DEPS="boost boost-libs expect jq autoconf shellcheck sqlite python-virtualenv"
UBUNTU_DEPS="libboost-all-dev expect jq autoconf shellcheck sqlite3 python3-venv"
FEDORA_DEPS="boost-devel expect jq autoconf ShellCheck sqlite python-virtualenv"

if [ "${DISTRIB}" = "arch" ]; then
pacman -S --refresh --needed --noconfirm $ARCH_DEPS
elif [ "${DISTRIB}" = "fedora" ]; then
dnf -y install $FEDORA_DEPS
Comment on lines +13 to +14
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe add something like "not officially supported, use fedora build on your own risk"

else
apt-get update
apt-get -y install $UBUNTU_DEPS
Expand Down