#!/bin/bash # # Installs EMSL_Basis_Set_Exchange_Local # Mon Jan 12 12:57:19 CET 2015 BASE="EMSL_Basis_Set_Exchange_Local" URL="https://github.com/LCPQ/${BASE}/archive/master.tar.gz" # Check the QPACKAGE_ROOT directory if [[ -z ${QPACKAGE_ROOT} ]] then echo "The QPACKAGE_ROOT environment variable is not set." echo "Please reload the quantum_package.rc file." exit 1 fi cd ${QPACKAGE_ROOT} ${QPACKAGE_ROOT}/scripts/fetch_from_web.py ${URL} ${QPACKAGE_ROOT}/${BASE}.tar.gz tar -zxf ${BASE}.tar.gz && rm ${BASE}.tar.gz ||exit 1 mv ${BASE}-master EMSL_Basis