10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-09-13 13:28:32 +02:00
qmcchem/install/scripts/install_ninja.sh
2015-12-18 22:27:18 +01:00

26 lines
365 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()
{
set -e
set -u
cd "${BUILD}"
./configure.py --bootstrap
cd -
mv "${BUILD}/ninja" ../bin/
return 0
}
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
then
wget ${URL} -O "Downloads/${TARGET}.tar.gz"
fi
source scripts/build.sh