Created
June 9, 2018 20:25
-
-
Save RafalSladek/d7ebdf214ccec1f84f15e423f6492207 to your computer and use it in GitHub Desktop.
you can use it to compile cropcoind under ubuntu 16.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
| #!/bin/bash | |
| apt -y install software-properties-common | |
| apt-add-repository -y ppa:bitcoin/bitcoin | |
| apt-get update | |
| apt install -y make build-essential libtool software-properties-common autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev \ | |
| libboost-program-options-dev libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git pwgen curl libdb4.8-dev \ | |
| bsdmainutils libdb4.8++-dev libminiupnpc-dev libgmp3-dev pwgen | |
| rm -rf CropDev | |
| git clone https://github.com/Cropdev/CropDev.git | |
| cd CropDev/src | |
| mkdir obj/support | |
| mkdir obj/crypto | |
| make -j$(nproc) -f makefile.unix | |
| cp -Rf cropcoind /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment