Skip to content

Instantly share code, notes, and snippets.

@nrobinson2000
Last active August 23, 2016 21:11
Show Gist options
  • Save nrobinson2000/8087b9f8c330f1c70d13 to your computer and use it in GitHub Desktop.
Save nrobinson2000/8087b9f8c330f1c70d13 to your computer and use it in GitHub Desktop.
bitcoinclassic-install.sh
#bitcoinclassic-install.sh
#!/bin/bash
echo "Please run this script with sudo."
cd ~
git clone https://github.com/bitcoinclassic/bitcoinclassic.git
git pull
cd bitcoinclassic
add-apt-repository ppa:bitcoin/bitcoin
apt-get update
apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libdb4.8-dev libdb4.8++-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev
./autogen.sh
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment