-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support: added install_deps_ubuntu.sh
convenient way to bootstrap quickly
- Loading branch information
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |