mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 13:13:57 +01:00
10 lines
269 B
Bash
10 lines
269 B
Bash
|
#!/bin/bash -x
|
||
|
# This script should be included
|
||
|
|
||
|
BUILD=_build/${TARGET}
|
||
|
rm -rf -- ${BUILD}
|
||
|
mkdir ${BUILD} || exit 1
|
||
|
tar -zxf Downloads/${TARGET}.tar.gz --strip-components=1 --directory=${BUILD} || exit 1
|
||
|
_install || exit 1
|
||
|
rm -rf -- ${BUILD} _build/${TARGET}.log
|
||
|
exit 0
|