Created
January 30, 2014 19:45
-
-
Save Contex/8717254 to your computer and use it in GitHub Desktop.
Commands for installing dogecoind with boost 1.55 on Ubuntu 12.04
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
| apt-get -y install build-essential libssl-dev libqrencode-dev libminiupnpc-dev git libz-dev libbz2-dev python2.7-dev | |
| git clone https://github.com/dogecoin/dogecoin.git | |
| wget -O boost_1_55_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.gz/download | |
| tar -xvzf boost_1_55_0.tar.gz | |
| cd boost_1_55_0 | |
| ./bootstrap.sh --prefix=/usr | |
| ./b2 stage threading=multi link=shared | |
| ./b2 install threading=multi link=shared | |
| cd /home/user/dogecoin/src | |
| make -f makefile.unix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment