source: issm/trunk/externalpackages/tao/install.sh@ 8389

Last change on this file since 8389 was 8389, checked in by Mathieu Morlighem, 14 years ago

trunk: simpler tao install

  • Property svn:executable set to *
File size: 413 bytes
Line 
1#!/bin/bash
2
3#Get number of cpus on current platform
4NUMCPUS=$1;
5
6#version
7version='1.10.1-p1'
8
9#Some cleanup
10rm -rf install tao-$version
11
12#Create src and install directories
13mkdir install
14
15#Untar
16tar -zxvf tao-$version.tar.gz
17
18#move into place
19mv tao-$version/* install/
20rm -rf tao-$version
21cd install
22
23export TAO_DIR="$ISSM_TIER/externalpackages/tao/install/"
24
25#recomplie petsc with --with-clanguage=C++
26make
Note: See TracBrowser for help on using the repository browser.