source: issm/trunk/externalpackages/angel/install.sh@ 10064

Last change on this file since 10064 was 10064, checked in by Eric.Larour, 13 years ago

Getting svn to ignore some files

  • Property svn:executable set to *
File size: 263 bytes
Line 
1#!/bin/bash
2
3#get number of CPUS
4NUMCPUS=$1;
5
6#Some cleanup
7rm -rf angel
8
9#download
10svn co -r 82 https://angellib.svn.sourceforge.net/svnroot/angellib/trunk angel
11
12#Apply patches
13cd angel
14
15#Compile angel
16if [ -z $NUMCPUS ];
17then
18 make
19else
20 make -j $NUMCPUS
21fi
Note: See TracBrowser for help on using the repository browser.