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
#!/usr/bin/python | |
import hashlib | |
import re | |
import sys | |
import os | |
import base64 | |
import time | |
import random | |
import hmac |
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
# builds dogecoin 1.8.2 with openssl 1.0.1l and boost 1.55 | |
# tested and verified on CentOS: 2.6.32-504.el6.x86_64 | |
export DOGEREF=v1.8.2 # change this if you want | |
export DEST_DIR=~/dogecoin # change this if you want, too | |
export DOGE_BUILD_LOC=~/doge-build # and this, too | |
# init env | |
mkdir -p $DOGE_BUILD_LOC | |
pushd $DOGE_BUILD_LOC |
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
sudo apt-get update | |
sudo apt-get install git build-essential libtool autotools-dev autoconf libssl-dev pkg-config | |
sudo apt-get install libboost1.55-dev libboost-chrono1.55-dev libboost-filesystem1.55-dev libboost-program-options1.55-dev libboost-system1.55-dev libboost-test1.55-dev libboost-thread1.55-dev | |
sudo apt-get install libdb5.1++-dev | |
sudo apt-get install libminiupnpc-dev | |
## to include the QT GUI, also do: | |
sudo apt-get install libqt4-dev | |
sudo apt-get install libprotobuf-dev protobuf-compiler | |
sudo apt-get install libqrencode-dev |
NewerOlder