Sure. I just compiled it up so I could see how to answer this question. There are a couple of tweaks that are already covered here but here they are again in a non-obfuscated fashion. I am assuming you tried running build.sh and it failed like it did for me the first time. The tweaks are:
1) The version of bn.h atusr/local/include/openssl/bn.h is problematic so we need to put the correct one in that location. First, in a temporary directory off ofhome/m1 (I use XXX in example):
fromhome/m1/XXX do a wget to get a proper openssl:
wget
https://www.openssl.org/source/openssl-1.0.1g.tar.gz tar zxvf openssl-1.0.1g.tar.gz
Make backup of bh.h and copy over the new version
sudo mvusr/local/include/openssl/bn.husr/local/include/openssl/bn.h.old
sudo cphome/m1/XXX/openssl-1.0.1g/crypto/bn/bn.husr/local/include/openssl/
2) The location of the cuda libraries in configure.sh doesn't match nvOC so we need to change it:
cdhome/m1/XXX/ccminer-xevan-master
vi configure.sh
change
CUDA_CFLAGS="-O3 -lineno -Xcompiler -Wall -D_FORCE_INLINES" ./configure CXXFLAGS="-O3 $extracflags" --with-cuda=/usr/local/cuda-7.5 --with-nvml=libnvidia-ml.so
to
CUDA_CFLAGS="-O3 -lineno -Xcompiler -Wall -D_FORCE_INLINES" ./configure CXXFLAGS="-O3 $extracflags" --with-cuda=/usr/local/cuda --with-nvml=libnvidia-ml.so
after that, you should be able to build normally by executing build.sh
Hope this helps.
Edit: You can download the version I compiled up from here:
http://www.cstone.net/~stu/nvOC/miners/ccminer-xevan.tar.gz