mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
14 lines
204 B
Bash
14 lines
204 B
Bash
|
#!/bin/bash -x
|
||
|
|
||
|
TARGET=ninja
|
||
|
|
||
|
function _install()
|
||
|
{
|
||
|
cd ${BUILD} || return 1
|
||
|
./configure.py --bootstrap || return 1
|
||
|
cd -
|
||
|
mv ${BUILD}/ninja ../bin/ || return 1
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
source scripts/build.sh
|