support: added install_deps_ubuntu.sh

convenient way to bootstrap quickly
This commit is contained in:
Andrew Tridgell
2024-04-08 10:16:31 +10:00
parent 231b239f30
commit 411c4789df
2 changed files with 13 additions and 0 deletions

View File

@@ -104,6 +104,8 @@ like.
> sudo apt install -y liblz4-dev
> sudo apt install -y libssl-dev
Or run support/install_deps_ubuntu.sh
- For CentOS (use EPEL for python3-pip):
> sudo yum -y install epel-release

11
support/install_deps_ubuntu.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# install script for build dependencies for ubuntu/debian systems
sudo apt install -y gcc g++ gawk autoconf automake python3-cmarkgfm
sudo apt install -y acl libacl1-dev
sudo apt install -y attr libattr1-dev
sudo apt install -y libxxhash-dev
sudo apt install -y libzstd-dev
sudo apt install -y liblz4-dev
sudo apt install -y libssl-dev