summaryrefslogtreecommitdiff
path: root/getDecuda/getDecuda.sh
blob: a4a7db96c093d68d0d48a5c33330c7c662dafef9 (plain)
1
2
3
4
5
6
7
8
9
10
# This script downloads the latest version of decuda from http://github.com/laanwj/decuda, untars it and patches it.
# Currently hardcoded to work with only decuda 0.4.2.

# decuda.patch must be in the same folder as getDecuda.sh

wget -q  http://github.com/laanwj/decuda/tarball/master
tar -xf ./laanwj-decuda-c30bd17.tar.gz
mv laanwj-decuda-c30bd17 ../decuda
patch -s -d ../decuda < ./decuda.patch
rm ./laanwj-decuda-c30bd17.tar.gz