Skip to content

Instantly share code, notes, and snippets.

@nwiizo
Last active December 7, 2017 05:14
Show Gist options
  • Save nwiizo/9232454e16ee694e8a6f1d91b668223d to your computer and use it in GitHub Desktop.
Save nwiizo/9232454e16ee694e8a6f1d91b668223d to your computer and use it in GitHub Desktop.
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
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