From 411c4789dfb2561d3400a5f8282f5f1bab76eeae Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 8 Apr 2024 10:16:31 +1000 Subject: [PATCH] support: added install_deps_ubuntu.sh convenient way to bootstrap quickly --- INSTALL.md | 2 ++ support/install_deps_ubuntu.sh | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100755 support/install_deps_ubuntu.sh diff --git a/INSTALL.md b/INSTALL.md index 1605ab435..8ef574a54 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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 diff --git a/support/install_deps_ubuntu.sh b/support/install_deps_ubuntu.sh new file mode 100755 index 000000000..ac49055bb --- /dev/null +++ b/support/install_deps_ubuntu.sh @@ -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 -- 2.47.2