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
RevLine 
[8971]1#!/bin/bash
2
3#Some cleanup
[12878]4rm -rf install libtool[\w.- ]* src
[8971]5mkdir install
6
[12258]7#Download from ISSM server
[12878]8$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/libtool' 'libtool'
[12258]9
[8971]10#Untar
[12878]11tar -zxvf libtool[\w.-]*.tar.gz
12rm libtool[\w.-]*.tar.gz
[8971]13
[12878]14
[8971]15#Move libtool into src directory
[12878]16mv libtool[\w.-]* src
[8971]17
18#Compile libtool
19cd src
[12168]20./configure --prefix="$ISSM_DIR/externalpackages/libtool/install"
[8971]21make
22make install
Note: See TracBrowser for help on using the repository browser.