mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
24 lines
451 B
Bash
Executable File
24 lines
451 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
NAME='hdf5-1.10.1'
|
|
|
|
if (( $# != 1 )); then
|
|
echo "usage: `basename $0` <prefix> {osx|linux}" 1>&2
|
|
exit 1
|
|
fi
|
|
PREFIX=$1
|
|
|
|
set -ex
|
|
INITDIR=`pwd`
|
|
cd local/build
|
|
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
|
|
../configure --prefix=${PREFIX} --enable-cxx
|
|
make -j4
|
|
make install
|
|
cd ${INITDIR}/local
|
|
touch .built.hdf5
|
|
cd ${INITDIR}
|