10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 03:15:19 +02:00
qmcchem/install/scripts/build.sh
2015-12-18 22:27:18 +01:00

15 lines
387 B
Bash
Executable File

#!/bin/bash -x
# This script should be included by all other scripts in this directory
set -u # All variables should be defined
set -e # The script should exit if something goes wrong
BUILD="_build/${TARGET}"
rm -rf -- "${BUILD}"
mkdir "${BUILD}"
tar -zxf "Downloads/${TARGET}.tar.gz" --strip-components=1 --directory="${BUILD}"
_install
rm -rf -- "${BUILD}" "${BUILD}.log"
exit 0