1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00
LatAnalyze/ci-scripts/install-deps.sh

16 lines
267 B
Bash
Raw Normal View History

#!/usr/bin/env bash
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
mkdir -p local/build
2019-04-26 16:54:04 +01:00
for d in gsl nlopt minuit hdf5; do
if [ ! -e local/.built.${d} ]; then
2016-04-11 19:16:38 +01:00
./install-${d}.sh ${PREFIX}
fi
done