source: issm/trunk/externalpackages/xaifbooster/install.sh@ 9712

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

new xaifbooster package

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