Last change
on this file since 1500 was
1500,
checked in by stefan, 11 years ago
|
merge chgset 1499 from stable/1.2: patch for bug in MUMPS
|
File size:
1.0 KB
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | # Set the following to the latest MUMPS version. |
---|
4 | # THERE MUST BE NO SPACE BEFORE AND AFTER THE EQUAL (=) OPERATOR. |
---|
5 | mumps_ver=4.9 |
---|
6 | |
---|
7 | set -e |
---|
8 | |
---|
9 | wgetcmd=wget |
---|
10 | whichwget=`which wget 2>/dev/null` |
---|
11 | if test -z "$whichwget" ; then |
---|
12 | echo "Utility wget not found in your PATH." |
---|
13 | if test `uname` = Darwin; then |
---|
14 | wgetcmd=ftp |
---|
15 | echo "Using ftp command instead." |
---|
16 | else |
---|
17 | exit -1 |
---|
18 | fi |
---|
19 | fi |
---|
20 | |
---|
21 | echo " " |
---|
22 | echo "Running script for downloading the source code for MUMPS" |
---|
23 | echo " " |
---|
24 | |
---|
25 | rm -f MUMPS*.tgz |
---|
26 | |
---|
27 | echo "Downloading the source code from ..." |
---|
28 | $wgetcmd http://mumps.enseeiht.fr/MUMPS_${mumps_ver}.tar.gz |
---|
29 | |
---|
30 | echo "Uncompressing the tarball..." |
---|
31 | gunzip -f MUMPS_${mumps_ver}.tar.gz |
---|
32 | |
---|
33 | echo "Unpacking the source code..." |
---|
34 | tar xf MUMPS_${mumps_ver}.tar |
---|
35 | |
---|
36 | echo "Deleting the tar file..." |
---|
37 | rm MUMPS_${mumps_ver}.tar |
---|
38 | |
---|
39 | rm -rf MUMPS |
---|
40 | mv MUMPS_${mumps_ver} MUMPS |
---|
41 | |
---|
42 | echo " " |
---|
43 | echo "Done downloading the source code for MUMPS." |
---|
44 | echo " " |
---|
45 | |
---|
46 | echo " " |
---|
47 | echo "Applying patch." |
---|
48 | echo " " |
---|
49 | |
---|
50 | patch -p0 < mumps.patch |
---|
51 | |
---|
52 | echo " " |
---|
53 | echo "Verify that there are no error message in the output above." |
---|
Note: See
TracBrowser
for help on using the repository browser.