support: added install_deps_ubuntu.sh
authorAndrew Tridgell <andrew@tridgell.net>
Mon, 8 Apr 2024 00:16:31 +0000 (10:16 +1000)
committerAndrew Tridgell <andrew@tridgell.net>
Mon, 8 Apr 2024 05:32:16 +0000 (15:32 +1000)
convenient way to bootstrap quickly

INSTALL.md
support/install_deps_ubuntu.sh [new file with mode: 0755]

index 1605ab435e00f83329e7a52b714a38fdb3396105..8ef574a543cd62da8b2c699e1c08caf8824cb68f 100644 (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
diff --git a/support/install_deps_ubuntu.sh b/support/install_deps_ubuntu.sh
new file mode 100755 (executable)
index 0000000..ac49055
--- /dev/null
@@ -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