Last change
on this file since 11101 was 11101, checked in by Mathieu Morlighem, 13 years ago |
Changing the way externalpackages are installed: one script per version and per platform if necessary. The goal is to make the installation process more userfriendly
|
-
Property svn:executable
set to
*
|
File size:
316 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | #Some cleanup
|
---|
4 | rm -rf install autoconf-2.63 src
|
---|
5 |
|
---|
6 | #Create install directories
|
---|
7 | mkdir install
|
---|
8 |
|
---|
9 | #Untar
|
---|
10 | tar -zxvf autoconf-2.63.tar.gz
|
---|
11 |
|
---|
12 | #Move autoconf into src directory
|
---|
13 | mv autoconf-2.63 src
|
---|
14 |
|
---|
15 | #Compile autoconf
|
---|
16 | cd src
|
---|
17 | ./configure --prefix="$ISSM_TIER/externalpackages/autoconf/install"
|
---|
18 | make
|
---|
19 | make install
|
---|
Note:
See
TracBrowser
for help on using the repository browser.