1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-21 08:32:01 +01:00

Travis update

This commit is contained in:
2016-04-11 19:16:38 +01:00
parent cdf516b5ac
commit 1400f6e257
7 changed files with 40 additions and 11 deletions

View File

@ -2,6 +2,12 @@
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
@ -9,7 +15,7 @@ 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
../configure --prefix=${PREFIX} --enable-cxx
make -j4
make install
cd ${INITDIR}/local