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