10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-28 08:02:07 +02:00
qmcchem/install/scripts/install_ocaml.sh

48 lines
942 B
Bash
Raw Normal View History

2015-12-18 22:25:32 +01:00
#!/bin/bash -x
set -u
set -e
PACKAGES="core cryptokit ocamlfind sexplib"
declare -i i
i=$(gcc -dumpversion | cut -d '.' -f 2)
if [[ i -lt 6 ]]
then
echo "GCC version $(gcc -dumpversion) too old. GCC >= 4.6 required."
exit 1
fi
source ../qmcchemrc
cd Downloads
chmod +x opam_installer.sh
if [[ -d "${HOME}"/.opam ]]
then
set +e
set +u
source "${HOME}"/.opam/opam-init/init.sh
set -e
set -u
fi
echo N | ./opam_installer.sh "${QMCCHEM_PATH}"/bin/
if [[ ! -f "${QMCCHEM_PATH}"/bin/opam ]]
then
echo "Installation of OPAM failed"
exit 2
fi
"${QMCCHEM_PATH}"/bin/opam config setup -a --dot-profile "${QMCCHEM_PATH}"/qmcchemrc
touch "${QMCCHEM_PATH}"/bin/opam
set +u
export LD_LIBRARY_PATH="${QMCCHEM_PATH}/lib:${LD_LIBRARY_PATH}"
export LIBRARY_PATH="${QMCCHEM_PATH}/lib:${LIBRARY_PATH}"
export C_INCLUDE_PATH="${QMCCHEM_PATH}/lib:${C_INCLUDE_PATH}"
set -u
opam install ${PACKAGES}
rm ../_build/ocaml.log
exit 0