From: Andrew Tridgell Date: Mon, 8 Apr 2024 00:16:31 +0000 (+1000) Subject: support: added install_deps_ubuntu.sh X-Git-Tag: v3.4.0~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=411c4789dfb2561d3400a5f8282f5f1bab76eeae;p=thirdparty%2Frsync.git support: added install_deps_ubuntu.sh convenient way to bootstrap quickly --- diff --git a/INSTALL.md b/INSTALL.md index 1605ab43..8ef574a5 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 00000000..ac49055b --- /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