#!/bin/bash #get number of CPUS NUMCPUS=$1; #Some cleanup rm -rf angel #download svn co -r 82 https://angellib.svn.sourceforge.net/svnroot/angellib/trunk angel #Apply patches cd angel #Compile angel if [ -z $NUMCPUS ]; then make else make -j $NUMCPUS fi