Last active
August 23, 2016 21:11
-
-
Save nrobinson2000/8087b9f8c330f1c70d13 to your computer and use it in GitHub Desktop.
bitcoinclassic-install.sh
This file contains hidden or 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
#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