Post
Topic
Board Announcements (Altcoins)
Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark=
by
fnz
on 13/04/2015, 15:01:58 UTC
For those of you that want to compile crave:
Assuming you have all the dependencies.

For libsecp256k1:
Code:
git clone https://github.com/bitcoin/secp256k1.git
cd secp256k1
./autogen.sh
./configure
make
sudo make install
sudo ldconfig

Crave:
Code:
git clone https://github.com/industrialcoinmagic/crave.git

Now we have the latest secp256k1, but crave doesn't support that, you should apply this simple patch to crave,
Copy this in the same directory as crave/ to a file named latest_libsec.patch
http://pastebin.com/K1HCS8hW
Code:
cd crave
patch -p0 < latest_libsec.patch

If just compiling the daemon:
Code:
cd src/
make -f makefile.unix

If compiling with gui (make sure you're using qt5)
Code:
qmake
make

Hope that can help.