10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-23 21:52:06 +02:00
qmcchem/install/scripts/build.sh

15 lines
387 B
Bash
Raw Normal View History

2015-12-18 22:25:32 +01:00
#!/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