#!/bin/bash #------------------------------------------------------------------------------ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | # \\ / A nd | Copyright held by original author # \\/ M anipulation | #------------------------------------------------------------------------------ # License # This file is part of OpenFOAM. # # OpenFOAM is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License # along with OpenFOAM. If not, see . # # Script # AllMake.stage3 # # Description # Build script for ThirdParty packages: Stage3 # # The ThirdParty libraries # # Requirements: # 1: Your OpenFOAM environment must be properly initialized # 2: AllMake.stage1 if you are overriding your system compiler # 3: AllMake.stage2 if you are overriding your system comm. libraries # # Author: # Martin Beaudoin, Hydro-Quebec, (2010) # #------------------------------------------------------------------------------ # run from third-party directory only cd ${0%/*} || exit 1 wmakeCheckPwd "$WM_THIRD_PARTY_DIR" || { echo "Error: Current directory is not \$WM_THIRD_PARTY_DIR" echo " The environment variables are inconsistent with the installation." echo " Check the OpenFOAM entries in your dot-files and source them." exit 1 } . tools/makeThirdPartyFunctionsForRPM #------------------------------------------------------------------------------ echo ======================================== echo Starting ThirdParty AllMake: Stage3 echo ======================================== echo # Metis if [ -z "$METIS_SYSTEM" ] then ( rpm_make -p metis-5.0pre2 -s metis-5.0pre2.spec -u http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD/metis-5.0pre2.tar.gz ) else echo "Using system installed Metis" echo "" fi # ParMGridGen if [ -z "$PARMGRIDGEN_SYSTEM" ] then ( rpm_make -p ParMGridGen-1.0 -s ParMGridGen-1.0.spec -u http://www.mgnet.org/mgnet/Codes/parmgridgen/ParMGridGen-1.0.tar.gz ) else echo "Using system installed ParMGridGen" echo "" fi # Libccmio if [ -z "$LIBCCMIO_SYSTEM" ] then ( rpm_make -p libccmio-2.6.1 -s libccmio-2.6.1.spec -u http://portal.nersc.gov/svn/visit/tags/2.4.2/third_party/libccmio-2.6.1.tar.gz ) else echo "Using system installed Libccmio" echo "" fi # Mesquite if [ -z "$MESQUITE_SYSTEM" ] then ( rpm_make -p mesquite-2.1.2 -s mesquite-2.1.2.spec -u http://software.sandia.gov/~jakraft/mesquite-2.1.2.tar.gz ) else echo "Using system installed Mesquite" echo "" fi # The following three packages depends on the availability of OpenMPI # The macro rpm_make() will make sure to update the ThirdParty environment variables before starting # the compilation. # Just make sure the OpenMPI environment variables are properly initialized, or that # the AllMake.stage2 script completed correctly # # Scotch if [ -z "$SCOTCH_SYSTEM" ] then ( rpm_make -p scotch-5.1.10b -s scotch-5.1.10b.spec -u https://gforge.inria.fr/frs/download.php/27583/scotch-5.1.10b.tar.gz ) else echo "Using system installed Scotch" echo "" fi # ParMetis if [ -z "$PARMETIS_SYSTEM" ] then ( rpm_make -p ParMetis-3.1.1 -s ParMetis-3.1.1.spec -u http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/OLD/ParMetis-3.1.1.tar.gz ) else echo "Using system installed ParMetis" echo "" fi ## Zoltan #if [ -z "$ZOLTAN_SYSTEM" ] #then # ( rpm_make -p zoltan-3.5 -s zoltan-3.5.spec -u http://www.cs.sandia.gov/~kddevin/Zoltan_Distributions/zoltan_distrib_v3.5.tar.gz ) #else # echo "Using system installed Zoltan" # echo "" #fi # PyFoam if [ -z "$PYFOAM_SYSTEM" ] then # ( rpm_make -p PyFoam-0.5.6 -s PyFoam-0.5.6.spec -u http://openfoamwiki.net/images/b/b8/PyFoam-0.5.6.tar.gz -n PyFoam-0.5.6-1.noarch -a noarch) ( rpm_make -p PyFoam-0.5.7 -s PyFoam-0.5.7.spec -u http://openfoamwiki.net/images/d/dc/PyFoam-0.5.7.tar.gz -n PyFoam-0.5.7-1.noarch -a noarch) else echo "Using system installed PyFoam" echo "" fi echo ======================================== echo Done ThirdParty AllMake: Stage3 echo ======================================== echo # ----------------------------------------------------------------- end-of-file