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

26 lines
365 B
Bash
Raw Normal View History

2015-12-18 22:25:32 +01:00
#!/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