10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-12 22:24:41 +02:00
quantum_package/scripts/install/install_ninja.sh

24 lines
560 B
Bash
Raw Normal View History

2015-05-26 10:42:21 +02:00
#!/bin/bash
#
2015-05-28 13:25:16 +02:00
# Installs the ninja build system
# Thu May 28 13:21:16 CEST 2015
2015-05-26 10:42:21 +02:00
BASE="ninja"
URL="https://github.com/martine/ninja/archive/master.tar.gz"
if [[ -z ${QPACKAGE_ROOT} ]]
then
echo "The QPACKAGE_ROOT environment variable is not set."
echo "Please reload the quantum_package.rc file."
exit -1
fi
cd ${QPACKAGE_ROOT}
${QPACKAGE_ROOT}/scripts/install/fetch_from_web.py ${URL} ${QPACKAGE_ROOT}/${BASE}.tar.gz
tar -zxf ${BASE}.tar.gz && rm ${BASE}.tar.gz ||exit 1
rm -rf ${BASE}
mv ${BASE}-master ${BASE}
cd ${BASE}
./configure.py --bootstrap