mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-12-23 01:04:29 +00:00
CI with Travis and loads of portability fixes
This commit is contained in:
17
ci-scripts/install-hdf5.sh
Executable file
17
ci-scripts/install-hdf5.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
NAME='hdf5-1.8.16'
|
||||
|
||||
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=${INITDIR}/local --enable-cxx
|
||||
make -j4
|
||||
make install
|
||||
cd ${INITDIR}/local
|
||||
touch .built.hdf5
|
||||
cd ${INITDIR}
|
||||
Reference in New Issue
Block a user