Skip to content

Instantly share code, notes, and snippets.

@mmlinford
Last active August 11, 2018 22:20
Show Gist options
  • Save mmlinford/e9ba1105ab174c59ddda5ae85d5dcc31 to your computer and use it in GitHub Desktop.
Save mmlinford/e9ba1105ab174c59ddda5ae85d5dcc31 to your computer and use it in GitHub Desktop.
build dogecoin on Debian 9.5
# install Berkeley DB 5.1
echo "deb http://security.debian.org/debian-security wheezy/updates main" >> /etc/apt/sources.list
apt-get --assume-yes update
apt-get --assume-yes install libdb5.1++-dev
# checkout dogecoin
apt-get --assume-yes install git
git clone http://github.com/dogecoin/dogecoin.git
# configure build
cd dogecoin
apt-get --assume-yes install autoconf libtool pkg-config
./autogen.sh
apt-get --assume-yes install g++ libboost-all-dev libssl1.0-dev
./configure --disable-shared --without-gui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment