mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-06-15 14:17:04 +01:00
reintegration of LatCore & folder restructuration
This commit is contained in:
@ -13,4 +13,3 @@ for d in nlopt minuit hdf5; do
|
||||
./install-${d}.sh ${PREFIX}
|
||||
fi
|
||||
done
|
||||
./install-latcore.sh ${PREFIX}
|
||||
|
@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if (( $# != 1 )); then
|
||||
echo "usage: `basename $0` <prefix> {osx|linux}" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
PREFIX=$1
|
||||
|
||||
set -ex
|
||||
INITDIR=`pwd`
|
||||
cd local/build
|
||||
if [ -d LatCore ]; then
|
||||
cd LatCore
|
||||
git pull origin master
|
||||
else
|
||||
git clone https://github.com/aportelli/LatCore.git
|
||||
mkdir LatCore/build
|
||||
cd LatCore
|
||||
./bootstrap.sh
|
||||
fi
|
||||
cd build
|
||||
../configure --prefix=${PREFIX}
|
||||
make -j4
|
||||
make install
|
||||
cd ${INITDIR}
|
Reference in New Issue
Block a user