script to download tarballs for sites without network connection [ci skip]

This commit is contained in:
edoapra 2021-05-07 12:55:13 -07:00
parent 56e450a790
commit 4b2b1af52e
No known key found for this signature in database
GPG key ID: 472C4EBB4F3AEDFA

15
contrib/getfiles.nwchem Normal file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
#
# $Id$
cd $NWCHEM_TOP/src/nwpw/nwpwlib/nwpwxc/
rm -f dftd3.tgz
wget https://www.chemie.uni-bonn.de/pctc/mulliken-center/software/dft-d3/dftd3.tgz
cd $NWCHEM_TOP/src/libext/openblas
VERSION=0.3.13
rm -rf OpenBLAS*gz
curl -L https://github.com/xianyi/OpenBLAS/archive/v${VERSION}.tar.gz -o OpenBLAS-${VERSION}.tar.gz
cd $NWCHEM_TOP/src/libext/scalapack
COMMIT=bc6cad585362aa58e05186bb85d4b619080c45a9
rm -f scalapack-$COMMIT.zip
curl -L https://github.com/Reference-ScaLAPACK/scalapack/archive/$COMMIT.zip -o scalapack-$COMMIT.zip