Skip to content

Commit

Permalink
Create easy_installer.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
RocksteadyTC authored Jan 1, 2018
1 parent 1d355d5 commit bdc869f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions easy_installer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# rocksteady, turtlecoin developers 2017-2018
# use this installer to clone-and-compile turtlecoin in one line
# supports Ubuntu 16 LTS

sudo apt-get update
yes "" | sudo apt-get install build-essential python-dev gcc-4.9 g++-4.9 git cmake libboost1.58-all-dev librocksdb-dev
export CXXFLAGS="-std=gnu++11"
git clone https://github.com/turtlecoin/turtlecoin
cd turtlecoin
mkdir build && cd $_
cmake ..
make

0 comments on commit bdc869f

Please sign in to comment.