diff --git a/package/blas/3.10.0/install.sh b/package/blas/3.10.0/install.sh index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..7f19d0bd375b8aad68275712b2ab0a9789b9f772 100644 --- a/package/blas/3.10.0/install.sh +++ b/package/blas/3.10.0/install.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -x +set -e +. "${DOWNLOAD_TOOL}" -u http://www.netlib.org/blas/blas-3.10.0.tgz +cd "${JARVIS_TMP}" +rm -rf BLAS-3.10.0 +tar -xzvf "${JARVIS_DOWNLOAD}"/blas-3.10.0.tgz +cd BLAS-3.10.0 +#sed -i "35s/ftp/http/g" ./contrib/download_prerequisites +gfortran -c -O3 ./*.f +ar rv libblas.a ./*.o +cp libblas.a /usr/local/lib +