Last change
on this file since 3445 was
2554,
checked in by stefan, 9 years ago
|
update autotools version numbers to current latest versions
update corresponding autotools files
|
-
Property svn:executable set to
*
|
File size:
988 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # script to download and install the autoools versions that we currently use with COIN-OR/BuildTools |
---|
3 | # original script by Pierre Bonami |
---|
4 | |
---|
5 | PREFIX=$HOME/local2 |
---|
6 | |
---|
7 | acver=2.69 |
---|
8 | amver=1.12 |
---|
9 | ltver=2.4.2 |
---|
10 | |
---|
11 | # exit immediately if something fails |
---|
12 | set -e |
---|
13 | |
---|
14 | # so that we can configure automake with the new (then installed) autoconf |
---|
15 | export PATH=$PREFIX/bin:$PATH |
---|
16 | |
---|
17 | # cleanup from previous (maybe failed) build |
---|
18 | rm -rf autoconf-$acver* automake-$amver* libtool-$ltver* |
---|
19 | |
---|
20 | wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-$acver.tar.gz |
---|
21 | tar xvzf autoconf-$acver.tar.gz |
---|
22 | cd autoconf-$acver |
---|
23 | ./configure --prefix=$PREFIX |
---|
24 | make install |
---|
25 | cd .. |
---|
26 | |
---|
27 | wget ftp://ftp.gnu.org/gnu/automake/automake-$amver.tar.gz |
---|
28 | tar xvzf automake-$amver.tar.gz |
---|
29 | cd automake-$amver |
---|
30 | ./configure --prefix=$PREFIX |
---|
31 | make install |
---|
32 | cd .. |
---|
33 | |
---|
34 | wget ftp://ftp.gnu.org/gnu/libtool/libtool-$ltver.tar.gz |
---|
35 | tar xvzf libtool-$ltver.tar.gz |
---|
36 | cd libtool-$ltver |
---|
37 | ./configure --prefix=$PREFIX |
---|
38 | make install |
---|
39 | cd .. |
---|
40 | |
---|
41 | rm -rf autoconf-$acver* automake-$amver* libtool-$ltver* |
---|
Note: See
TracBrowser
for help on using the repository browser.