Skip to content

Instantly share code, notes, and snippets.

@krewshul
Last active September 28, 2019 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krewshul/31092dc50c7739e3371183cb54130fcc to your computer and use it in GitHub Desktop.
Save krewshul/31092dc50c7739e3371183cb54130fcc to your computer and use it in GitHub Desktop.
script for installing deps, downloading the repo, and compiling the PVPcoin wallet
#!/bin/bash
sudo apt update -y
sleep 2
sudo apt upgrade -y
sleep 2
sudo apt-get --assume-yes install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3
sleep 2
sudo apt-get --assume-yes install software-properties-common
sleep 2
sudo add-apt-repository -y ppa:bitcoin/bitcoin
sleep 2
sudo apt-get --assume-yes update
sleep 2
sudo apt-get --assume-yes install libdb4.8-dev libdb4.8++-dev
sleep 2
sudo apt-get --assume-yes install libminiupnpc-dev
sleep 2
sudo apt-get --assume-yes install libzmq3-dev
sleep 2
sudo apt-get --assume-yes install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
sleep 2
sudo apt-get --assume-yes install libqrencode-dev
sleep 2
sudo apt-get --assume-yes install libboost-all-dev
sleep 2
sudo wget https://github.com/MPAds/PvPCoin/raw/master/sourcecode/playervsplayercoin-source.tar.gz
sleep 2
sudo tar -xnzf playervsplayercoin-source.tar.gz
sleep 2
sudo ./autogen.sh
sleep 2
sudo ./configure
sleep 2
sudo make -j10
sleep 2
sudo make install
sleep 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment