Changeset 536 for ThirdParty/Blas/stable/1.0/get.Blas
- Timestamp:
- Aug 21, 2007 2:08:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Blas/stable/1.0/get.Blas
r303 r536 1 1 #!/bin/sh 2 2 3 set -e 4 5 wgetcmd=wget 3 6 wgetcount=`which wget 2>/dev/null | wc -w` 4 7 if test ! $wgetcount = 1; then 5 8 echo "Utility wget not found in your PATH." 6 exit -1 9 if test `uname` = Darwin; then 10 wgetcmd=ftp 11 echo "Using ftp command instead." 12 else 13 exit -1 14 fi 7 15 fi 8 16 … … 14 22 15 23 echo "Downloading the source code from www.netlib.org..." 16 wgetftp://www.netlib.org/blas/blas.tgz24 $wgetcmd ftp://www.netlib.org/blas/blas.tgz 17 25 18 26 echo "Uncompressing the tarball..."
Note: See TracChangeset
for help on using the changeset viewer.