Skip to content

Instantly share code, notes, and snippets.

@dbwest
Last active October 1, 2020 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbwest/33e8c042b35806997389a7d35d315035 to your computer and use it in GitHub Desktop.
Save dbwest/33e8c042b35806997389a7d35d315035 to your computer and use it in GitHub Desktop.
#!/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