source: issm/branches/trunk-jpl-damage/externalpackages/libtool/install.sh@ 12878

Last change on this file since 12878 was 12878, checked in by cborstad, 13 years ago

merged trunk-jpl into trunk-jpl-damage through revision 12877

  • Property svn:executable set to *
File size: 454 bytes
Line 
1#!/bin/bash
2
3#Some cleanup
4rm -rf install libtool[\w.- ]* src
5mkdir install
6
7#Download from ISSM server
8$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/libtool' 'libtool'
9
10#Untar
11tar -zxvf libtool[\w.-]*.tar.gz
12rm libtool[\w.-]*.tar.gz
13
14
15#Move libtool into src directory
16mv libtool[\w.-]* src
17
18#Compile libtool
19cd src
20./configure --prefix="$ISSM_DIR/externalpackages/libtool/install"
21make
22make install
Note: See TracBrowser for help on using the repository browser.