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

25 lines
428 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-11-28 12:30:17 +00:00
NAME='2.6.1'
2016-04-11 19:16:38 +01:00
if (( $# != 1 )); then
2019-04-26 17:36:44 +01:00
echo "usage: `basename $0` <prefix>" 1>&2
2016-04-11 19:16:38 +01:00
exit 1
fi
PREFIX=$1
set -ex
INITDIR=`pwd`
cd local/build
2019-11-28 12:30:17 +00:00
wget https://github.com/stevengj/nlopt/archive/v${NAME}.tar.gz
tar -xzvf v${NAME}.tar.gz
NAME=nlopt-${NAME}
mkdir -p ${NAME}/build
cd ${NAME}/build
2019-11-28 12:30:17 +00:00
cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} ..
make -j4
make install
cd ${INITDIR}/local
touch .built.nlopt
cd ${INITDIR}