Skip to content

Instantly share code, notes, and snippets.

@suprnurd
Created March 31, 2020 22:20
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 suprnurd/1747a79fb9ff816f66206c77504ba6fa to your computer and use it in GitHub Desktop.
Save suprnurd/1747a79fb9ff816f66206c77504ba6fa to your computer and use it in GitHub Desktop.
Compiling Crypto - MicroPaymentCoin v1.0 on Ubuntu 18.04
apt-get update && apt-get upgrade -y
git clone https://github.com/Dakillerbean/MicroPaymentCoin.git
cd MicroPaymentCoin
apt-get install build-essential libtool bsdmainutils autotools-dev autoconf pkg-config automake python3 -y
apt-get install libssl1.0-dev libgmp-dev libevent-dev libboost-all-dev -y
add-apt-repository ppa:bitcoin/bitcoin
apt-get install libdb4.8-dev libdb4.8++-dev -y
apt-get install libminiupnpc-dev -y
apt-get install libzmq3-dev -y
apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler -y
apt-get install libqrencode-dev -y
chmod +x ./autogen.sh
chmod +x share/genbuild.sh
./autogen.sh
./configure --enable-cxx --disable-shared --with-pic --disable-tests --disable-bench
make
@suprnurd
Copy link
Author

Here's the video that goes with this: https://youtu.be/B7opLc0D0EQ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment