Last active
December 7, 2017 05:14
-
-
Save nwiizo/9232454e16ee694e8a6f1d91b668223d 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
apt-get -y install build-essential libtool autotools-dev automake pkg-config libssl-dev \ | |
libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev \ | |
libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-all-dev \ | |
software-properties-common make autoconf | |
if [ -e /root/source/bitcoin-abc-0.16.1 ]; then | |
echo "bye" | |
else | |
wget https://github.com/Bitcoin-ABC/bitcoin-abc/archive/v0.16.1.tar.gz | |
tar zxf v0.16.1.tar.gz | |
cd bitcoin-abc-0.16.1 | |
./autogen.sh | |
./configure --disable-wallet | |
make | |
make install | |
fi |
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
apt-get -y install build-essential libtool autotools-dev automake pkg-config libssl-dev \ | |
libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev \ | |
libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-all-dev \ | |
software-properties-common make autoconf | |
if [ -e /root/source/bitcoin-0.15.1 ]; then | |
echo "bye" | |
else | |
wget https://github.com/bitcoin/bitcoin/archive/v0.15.1.tar.gz | |
tar zxf v0.15.1.tar.gz | |
cd bitcoin-0.15.1 | |
./autogen.sh | |
./configure --disable-wallet | |
make | |
make install | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment