install.sh (442B)
1 # 2 # build and install libsheepy 3 # build and install sheepy 4 # build and install spm 5 # 6 7 a=`pwd` 8 cd .. 9 git clone https://spartatek.se/git/libsheepy.git 10 cd libsheepy 11 git pull 12 ./make.sh 13 cd $a 14 15 # configure and build sheepy 16 gcc -o genMake genMake.c 17 ./genMake 18 rm genMake 19 20 cd src 21 ./compileSheepy.sh /usr/local/lib /usr/local/include 22 cp sheepy /usr/local/bin/ 23 ./compileSpm.sh 24 cp spm /usr/local/bin/ 25 26 # reset build scripts 27 git checkout compileSheepy.sh