Last active
October 1, 2020 01:45
-
-
Save dbwest/33e8c042b35806997389a7d35d315035 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
set -eo pipefail | |
# install dependencies | |
pkg install git cmake make g++ wget boost boost-static -y | |
# make a source directory to store the sauce in | |
mkdir -p ~/src | |
cd ~/src | |
# cloneables | |
git clone --recursive https://github.com/BananoCoin/banano.git banano_build | |
cd banano_build | |
# update the submodules | |
git submodule update --init --force --recursive | |
# compile stuff | |
cmake -G "Unix Makefiles" | |
make bananode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment