10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-28 16:12:26 +02:00
quantum_package/scripts/install_ocaml.sh

42 lines
975 B
Bash
Raw Normal View History

#!/bin/bash
#
# Downloads and installs ocaml, opam and core library
# Thu Oct 23 21:58:40 CEST 2014
QPACKAGE_ROOT=${PWD}
PACKAGES="core cryptokit"
2015-01-08 20:35:29 +01:00
function asksure() {
echo -n "Are you sure (Y/N)? "
return $retval
}
2014-10-29 22:25:30 +01:00
if [[ -f quantum_package.rc ]]
then
source quantum_package.rc
fi
make -C ocaml Qptypes.ml &> /dev/null
if [[ $? -ne 0 ]]
then
2015-01-12 19:24:05 +01:00
if [[ -d ${OCAMLBREW_BASE} ]]
2015-01-08 20:35:29 +01:00
then
2015-01-12 19:24:05 +01:00
echo "Remove directory ${OCAMLBREW_BASE} ? [Y/n]"
2015-01-08 20:35:29 +01:00
while read -r -n 1 -s answer; do
if [[ $answer = [YyNn] ]]; then
[[ $answer = [Yy] ]] && rm -rf -- ${HOME}/ocamlbrew
[[ $answer = [Nn] ]] && exit 1
break
fi
done
2015-01-12 19:24:05 +01:00
echo $answer
2015-01-08 20:35:29 +01:00
fi
2014-10-23 23:29:17 +02:00
scripts/fetch_from_web.py "https://raw.github.com/hcarty/ocamlbrew/master/ocamlbrew-install" ocamlbrew-install.sh
cat < ocamlbrew-install.sh | env OCAMLBREW_FLAGS="-r" bash | tee ocamlbrew_install.log
source quantum_package.rc
echo Y | opam install ${PACKAGES}
fi
make -C ocaml Qptypes.ml