mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
24 lines
427 B
Bash
Executable File
24 lines
427 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
NAME='hdf5-1.8.16'
|
|
|
|
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 http://www.hdfgroup.org/ftp/HDF5/current/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}
|