Correction to the compilation of mesquite-2.1.2. Bug fix contributed by Philippose...
[OpenFOAM-1.6-ext.git] / ThirdParty / AllMake.stage3
blob97ae6194875dd37ea3e4e96cc28393c6d8f9e332
1 #!/bin/bash
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright held by original author
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # AllMake.stage3
28 # Description
29 # Build script for ThirdParty packages: Stage3
31 # The ThirdParty libraries
33 # Requirements:
34 # 1: Your OpenFOAM environment must be properly initialized
35 # 2: AllMake.stage1 if you are overriding your system compiler
36 # 3: AllMake.stage2 if you are overriding your system comm. libraries
38 # Author:
39 # Martin Beaudoin, Hydro-Quebec, (2010)
41 #------------------------------------------------------------------------------
42 # run from third-party directory only
43 cd ${0%/*} || exit 1
45 wmakeCheckPwd "$WM_THIRD_PARTY_DIR" || {
46 echo "Error: Current directory is not \$WM_THIRD_PARTY_DIR"
47 echo " The environment variables are inconsistent with the installation."
48 echo " Check the OpenFOAM entries in your dot-files and source them."
49 exit 1
51 . tools/makeThirdPartyFunctionsForRPM
52 #------------------------------------------------------------------------------
54 echo ========================================
55 echo Starting ThirdParty AllMake: Stage3
56 echo ========================================
57 echo
60 # Metis
61 ( rpm_make metis-5.0pre2 http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.0pre2.tar.gz )
63 # ParMGridGen
64 ( rpm_make ParMGridGen-1.0 http://www.mgnet.org/mgnet/Codes/parmgridgen/ParMGridGen-1.0.tar.gz )
66 # Libccmio
67 #( rpm_make libccmio-2.6.1 )
69 # Mesquite
70 ( rpm_make mesquite-2.1.2 http://software.sandia.gov/~jakraft/mesquite-2.1.2.tar.gz )
72 # Scotch
73 if [ -d "$OPENMPI_DIR" ]; then
74 ( rpm_make scotch-5.1.10b https://gforge.inria.fr/frs/download.php/27583/scotch-5.1.10b.tar.gz )
75 else
76 echo "WARNING: The OPENMPI_DIR environment variable is not set."
77 echo "WARNING: Please make sure your environment is properly set up for openmpi. This is necessary for compiling scotch-5.1.10b"
78 echo "WARNING: Skipping the compilation of scotch-5.1.10b"
79 echo ""
82 # ParMetis
83 if [ -d "$OPENMPI_DIR" ]; then
84 ( rpm_make ParMetis-3.1.1 http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/ParMetis-3.1.1.tar.gz )
85 else
86 echo "WARNING: The OPENMPI_DIR environment variable is not set."
87 echo "WARNING: Please make sure your environment is properly set up for openmpi. This is necessary for compiling ParMetis-3.1.1"
88 echo "WARNING: Skipping the compilation of ParMetis-3.1.1"
89 echo ""
92 echo ========================================
93 echo Done ThirdParty AllMake: Stage3
94 echo ========================================
95 echo
97 # ----------------------------------------------------------------- end-of-file