mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
17 lines
294 B
Bash
Executable File
17 lines
294 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if (( $# != 1 )); then
|
|
echo "usage: `basename $0` <prefix> {osx|linux}" 1>&2
|
|
exit 1
|
|
fi
|
|
PREFIX=$1
|
|
|
|
set -ex
|
|
mkdir -p local/build
|
|
for d in nlopt minuit hdf5; do
|
|
if [ ! -e local/.built.${d} ]; then
|
|
./install-${d}.sh ${PREFIX}
|
|
fi
|
|
done
|
|
./install-latcore.sh ${PREFIX}
|