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