source: issm/trunk-jpl/externalpackages/libtool/install.sh@ 12189

Last change on this file since 12189 was 12189, checked in by Mathieu Morlighem, 13 years ago

Deleted all externalpackage from trunk, use python script to download from issm website

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