2010-05-12 13:27:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# ========= |
|
|
|
|
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
|
|
# \\ / O peration |
|
|
|
|
# \\ / A nd | Copyright held by original author
|
|
|
|
# \\/ M anipulation |
|
2011-01-13 17:21:49 +00:00
|
|
|
#------------------------------------------------------------------------------
|
2010-05-12 13:27:55 +00:00
|
|
|
# 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 2 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, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
|
|
|
# Script
|
|
|
|
# foamPackThirdPartyBin <archOptions> [outputDir]
|
|
|
|
#
|
|
|
|
# Description
|
|
|
|
# Packs and compresses binary version of OpenFOAM ThirdParty for release
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
2010-05-27 10:48:11 +00:00
|
|
|
if [ $# -eq 0 ]
|
|
|
|
then
|
|
|
|
echo "Error: archOptions type expected, exiting"
|
|
|
|
echo
|
|
|
|
echo "Usage : ${0##*/} <archOptions> [outputDir]"
|
|
|
|
echo
|
2010-05-12 13:27:55 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
archOptions=$1
|
2010-05-27 10:48:11 +00:00
|
|
|
arch=${archOptions%%G*} # TODO: works for Gcc only
|
|
|
|
arch3264=$(echo "$arch" | sed -e 's@64@-64@')
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
echo "archOptions=$archOptions"
|
|
|
|
echo "arch=$arch"
|
|
|
|
echo "arch3264=$arch3264"
|
|
|
|
|
|
|
|
timeStamp=$(date +%Y-%m-%d)
|
2010-05-27 10:48:11 +00:00
|
|
|
packDir=${WM_THIRD_PARTY_DIR:-ThirdParty}
|
|
|
|
packDir=${packDir##*/}
|
|
|
|
packFile=${packDir}.${archOptions}_${timeStamp}.tgz
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-05-27 10:48:11 +00:00
|
|
|
if [ ! -d $packDir ]
|
|
|
|
then
|
|
|
|
echo "Error: directory $packDir does not exist"
|
|
|
|
exit 1
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# add optional output directory
|
|
|
|
if [ -d "$2" ]
|
|
|
|
then
|
2010-05-27 10:48:11 +00:00
|
|
|
packFile="$2/$packFile"
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $packFile ]
|
|
|
|
then
|
2010-05-27 10:48:11 +00:00
|
|
|
echo "Error: $packFile already exists"
|
|
|
|
exit 1
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# get list of directories
|
|
|
|
dirList=`find $packDir -type d -name $arch -o -type d -name $archOptions'*' -o -type l -name $arch3264`
|
|
|
|
echo
|
|
|
|
echo "Packing $archOptions port of $packDir into $packFile"
|
|
|
|
echo
|
|
|
|
|
2010-05-27 10:48:11 +00:00
|
|
|
tar czpf $packFile $dirList
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-05-27 10:48:11 +00:00
|
|
|
if [ $? -eq 0 ]
|
2010-05-12 13:27:55 +00:00
|
|
|
then
|
2010-05-27 10:48:11 +00:00
|
|
|
echo "Finished packing and compressing file $packFile"
|
2010-05-12 13:27:55 +00:00
|
|
|
else
|
2010-05-27 10:48:11 +00:00
|
|
|
echo "Error: failure packing $packFile"
|
|
|
|
rm -f $packFile 2>/dev/null
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|