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
RevLine 
[18]1#!/bin/bash
2
3#Some cleanup
[11577]4rm -rf install automake-1.11.3 src
[18]5
[12258]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
[18]9#Create install directories
10mkdir install
11
12#Untar
[11577]13tar -zxvf automake-1.11.3.tar.gz
14mv automake-1.11.3 src
[18]15
16#Compile automake
17cd src
[12168]18./configure --prefix="$ISSM_DIR/externalpackages/automake/install"
[18]19make
20make install
Note: See TracBrowser for help on using the repository browser.