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

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

Fixed installation script

  • Property svn:executable set to *
File size: 476 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-2.4.2.tar.gz' 'libtool-2.4.2.tar.gz'
9
10#Untar
11tar -zxvf libtool-2.4.2.tar.gz
12rm libtool-2.4.2.tar.gz
13
14#Move libtool into src directory
15mv libtool-2.4.2 src
16
17#Compile libtool
18cd src
19./configure --prefix="$ISSM_DIR/externalpackages/libtool/install"
20make
21make install
Note: See TracBrowser for help on using the repository browser.