source: issm/branches/trunk-jpl-damage/externalpackages/automake/install.sh@ 12258

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

merged trunk-jpl into branches/trunk-jpl-damage through revision 12254

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