mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 22:53:39 +01:00
27 lines
417 B
Bash
Executable File
27 lines
417 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
set -u
|
|
set -e
|
|
|
|
TARGET=ninja
|
|
URL="http://github.com/martine/ninja/archive/v1.5.3.tar.gz"
|
|
|
|
function _install()
|
|
{
|
|
cd .. ; QMCCHEM_PATH="$PWD" ; cd -
|
|
set -e
|
|
set -u
|
|
cd "${BUILD}"
|
|
./configure.py --bootstrap
|
|
cd -
|
|
mv "${BUILD}/ninja" "${QMCCHEM_PATH}"/bin/
|
|
return 0
|
|
}
|
|
|
|
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
|
|
then
|
|
wget ${URL} -O "Downloads/${TARGET}.tar.gz"
|
|
fi
|
|
source scripts/build.sh
|
|
|