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

24 lines
451 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2017-11-16 16:53:59 +00:00
NAME='hdf5-1.10.1'
2016-04-11 19:16:38 +01:00
if (( $# != 1 )); then
echo "usage: `basename $0` <prefix> {osx|linux}" 1>&2
exit 1
fi
PREFIX=$1
set -ex
INITDIR=`pwd`
cd 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}