For those of you that want to compile crave:
Assuming you have all the dependencies.
For libsecp256k1:
git clone https://github.com/bitcoin/secp256k1.git
cd secp256k1
./autogen.sh
./configure
make
sudo make install
sudo ldconfig
Crave:
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/K1HCS8hWcd crave
patch -p0 < latest_libsec.patch
If just compiling the daemon:
cd src/
make -f makefile.unix
If compiling with gui (make sure you're using qt5)
qmake
make
Hope that can help.
Hmm that's strange.. after I did make install I didn't have to do any of that, it worked fine without having to do the patch or anything you mention.