Skip to content

Instantly share code, notes, and snippets.

@Contex
Created January 30, 2014 19:45
Show Gist options
  • Save Contex/8717254 to your computer and use it in GitHub Desktop.
Save Contex/8717254 to your computer and use it in GitHub Desktop.
Commands for installing dogecoind with boost 1.55 on Ubuntu 12.04
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