mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
11 lines
270 B
Bash
Executable File
11 lines
270 B
Bash
Executable File
#!/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
|