1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/ci-scripts/install-hdf5.sh

27 lines
503 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-11-28 12:30:17 +00:00
NAME='hdf5-1.10.5'
2016-04-11 19:16:38 +01:00
if (( $# != 1 )); then
2019-04-26 17:36:44 +01:00
echo "usage: `basename $0` <prefix>" 1>&2
2016-04-11 19:16:38 +01:00
exit 1
fi
PREFIX=$1
set -ex
2020-01-10 11:59:07 +00:00
INITDIR=$(pwd -P)
2020-01-11 20:16:56 +00:00
mkdir -p ${PREFIX}
2020-01-10 11:59:07 +00:00
cd ${PREFIX}
PREFIX=$(pwd -P)
cd ${INITDIR}/local/build
2017-11-16 17:04:37 +00:00
wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/${NAME}/src/${NAME}.tar.gz
tar -xzvf ${NAME}.tar.gz
mkdir ${NAME}/build
cd ${NAME}/build
2016-04-11 19:16:38 +01:00
../configure --prefix=${PREFIX} --enable-cxx
make -j4
make install
cd ${INITDIR}/local
touch .built.hdf5
cd ${INITDIR}