This file contains 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 update && apt-get upgrade -y | |
git clone https://github.com/Dakillerbean/MicroPaymentCoin.git | |
cd MicroPaymentCoin | |
chmod +x ./autogen.sh | |
chmod +x share/genbuild.sh | |
apt-get install build-essential libtool bsdmainutils autotools-dev autoconf pkg-config automake python3 -y | |
apt-get install libssl-dev libgmp-dev libevent-dev libboost-all-dev -y |
This file contains 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 update && apt-get upgrade -y | |
apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3 | |
git clone https://github.com/litecoincash-project/ring | |
cd ring/depends | |
apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 | |
make download-linux | |
make | |
cd .. | |
./autogen.sh | |
./configure --prefix=`pwd`/depends/x86_64-pc-linux-gnu --enable-cxx --disable-shared --with-pic --disable-bench --disable-tests CPPFLAGS="-fPIC" CXXFLAGS="-fPIC" |
This file contains 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
cd depends | |
apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch | |
make download-linux | |
make | |
cd .. | |
./autogen.sh | |
./configure --prefix=$PWD/depends/x86_64-pc-linux-gnu --disable-tests --disable-bench | |
make |
This file contains 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 update && apt-get upgrade -y | |
apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev -y | |
apt-get install libboost-all-dev -y | |
add-apt-repository ppa:bitcoin/bitcoin -y && apt-get update | |
apt-get install libdb4.8-dev libdb4.8++-dev -y | |
apt-get install libminiupnpc-dev -y | |
apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler -y | |
apt-get install libqrencode-dev -y | |
./autogen.sh | |
./configure --disable-tests |
This file contains 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
git clone https://github.com/PIVX-Project/PIVX.git | |
cd PIVX | |
git checkout v4.0.2 | |
cd depends | |
apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch | |
make download-linux | |
make | |
cd .. | |
./autogen.sh | |
./configure --enable-cxx --disable-shared --with-pic --disable-tests --disable-bench --prefix=`pwd`/depends/x86_64-pc-linux-gnu |
This file contains 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
git clone https://github.com/Actinium-project/Actinium-ng.git | |
cd Actinium-ng | |
git checkout v0.19.0.4 | |
apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch | |
cd depends | |
make download-linux | |
make | |
cd .. | |
./autogen.sh | |
./configure --enable-cxx --disable-shared --with-pic --disable-tests --disable-bench --prefix=`pwd`/depends/x86_64-pc-linux-gnu |
This file contains 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
git clone https://github.com/vertcoin-project/vertcoin-core.git | |
cd vertcoin-core | |
git checkout 0.14.0 | |
cd depends | |
apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 | |
make download-linux | |
make | |
cd .. | |
./autogen.sh | |
./configure --enable-cxx --disable-shared --with-pic --disable-tests --disable-bench --prefix=`pwd`/depends/x86_64-pc-linux-gnu |
This file contains 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 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 |
This file contains 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 update && apt-get upgrade -y; | |
git clone https://github.com/dogecoin/dogecoin.git; | |
cd dogecoin; | |
git checkout v1.14.2; | |
cd dogecoin/depends; | |
apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils; | |
cd sources; | |
wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1l.tar.gz; | |
wget http://download.qt.io/new_archive/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.gz; | |
wget http://download.qt.io/new_archive/qt/5.7/5.7.1/submodules/qttranslations-opensource-src-5.7.1.tar.gz; |