mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-13 01:23:57 +01:00
27 lines
700 B
Bash
Executable File
27 lines
700 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Downloads and installs ocaml, opam and core library
|
|
# Thu Oct 23 21:58:40 CEST 2014
|
|
|
|
QPACKAGE_ROOT=${PWD}
|
|
PACKAGES="core cryptokit"
|
|
|
|
if [[ -f quantum_package.rc ]]
|
|
then
|
|
source quantum_package.rc
|
|
fi
|
|
make -C ocaml Qptypes.ml &> /dev/null
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
|
|
rm -rf -- ${HOME}/ocamlbrew
|
|
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
|
|
grep "source " ocamlbrew_install.log | grep "etc/ocamlbrew.bashrc" >> quantum_package.rc
|
|
source quantum_package.rc
|
|
echo Y | opam install ${PACKAGES}
|
|
fi
|
|
make -C ocaml Qptypes.ml
|
|
|
|
|