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:
481 bytes
|
Rev | Line | |
---|
[18] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | #Some cleanup
|
---|
[11456] | 4 | rm -rf install autoconf-2.68 src
|
---|
[18] | 5 |
|
---|
[12189] | 6 | #Download from ISSM server
|
---|
| 7 | $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/autoconf-2.68.tar.gz' 'autoconf-2.68.tar.gz'
|
---|
| 8 |
|
---|
[18] | 9 | #Create install directories
|
---|
| 10 | mkdir install
|
---|
| 11 |
|
---|
| 12 | #Untar
|
---|
[12189] | 13 | tar -zxvf autoconf-2.68.tar.gz
|
---|
[18] | 14 |
|
---|
| 15 | #Move autoconf into src directory
|
---|
[11456] | 16 | mv autoconf-2.68 src
|
---|
[18] | 17 |
|
---|
| 18 | #Compile autoconf
|
---|
| 19 | cd src
|
---|
[12156] | 20 | ./configure --prefix="$ISSM_DIR/externalpackages/autoconf/install"
|
---|
[18] | 21 | make
|
---|
| 22 | make install
|
---|
Note:
See
TracBrowser
for help on using the repository browser.