eccodes/definitions/installDefinitions.sh

117 lines
2.6 KiB
Bash
Raw Normal View History

2013-03-25 12:04:10 +00:00
#!/bin/sh
#
2020-01-28 14:32:34 +00:00
# (C) Copyright 2005- ECMWF.
2013-03-25 12:04:10 +00:00
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
#
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
#
if [ $# != 2 ]
then
echo "
usage: $0 grib_api_installation_dir definition_files_installation_dir
"
exit 1
fi
requiredLibVersion=%LIBRARY_VERSION%
grib_api_dir=$1
grib_api_bin=$1/bin
definitions=$2
2015-01-22 16:44:59 +00:00
if [ ! -f $grib_api_bin/codes_info ]
2013-03-25 12:04:10 +00:00
then
echo "
Unable to find grib_api tools in $grib_api_bin
"
exit 1
fi
set -e
2015-01-22 16:44:59 +00:00
version=`$grib_api_bin/codes_info -v`
defaultDefinitions=`$grib_api_bin/codes_info -d`
2013-03-25 12:04:10 +00:00
set +e
if [ $version != $requiredLibVersion ]
then
echo "
#################################################################
# grib_api version $version found in
# $grib_api_dir
# Version $requiredLibVersion is required.
# Installation aborted.
#################################################################
"
exit 1
fi
echo checking definition files compatibility...
for file in `find . -name '*.def' -print`
do
${grib_api_bin}/codes_parser $file
2013-03-25 12:04:10 +00:00
done
if [ $? != 0 ]
then
echo definition files are not compatible with library version $version
echo installation aborted
exit 1
fi
set -e
echo compatibility check ok
echo copying definition files to $definitions.tmp~
[ ! -d $definitions.tmp~ ] || rm -rf $definitions.tmp~
mkdir -p $definitions.tmp~
cp -r * $definitions.tmp~
if [ -d $definitions ]
then
if [ -d ${definitions}.backup~ ]
then
echo "
#################################################################
# A backup definition files directory is present:
# ${definitions}.backup~
# Please rename or remove it before installing a
# new version of definition files.
# INSTALLATION ABORTED
#################################################################
"
exit 1
fi
echo "
#################################################################
# Definition file directory found in
# ${definitions}
# Moving $definitions to
# ${definitions}.backup~
#################################################################
"
mv $definitions ${definitions}.backup~
fi
echo moving $definitions.tmp~ to ${definitions}
mv $definitions.tmp~ ${definitions}
echo "
Definition files successfully installed in:
${definitions}
"
if [ ${definitions} != $defaultDefinitions ]
then
echo "
## Please remember to set
## ECCODES_DEFINITION_PATH=${definitions}
2013-03-25 12:04:10 +00:00
## to activate the new definition files.
"
fi