Changeset 494 for ThirdParty/Glpk/branches
- Timestamp:
- Aug 9, 2007 3:52:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Glpk/branches/BSP/trunk/get.Glpk
r436 r494 4 4 glpk_ver=4.19 5 5 6 wgetcmd=wget 6 7 wgetcount=`which wget 2>/dev/null | wc -w` 7 8 if test ! $wgetcount = 1; then 8 9 echo "Utility wget not found in your PATH." 9 exit -1 10 if test `uname` = Darwin; then 11 wgetcmd=ftp 12 echo "Using ftp command instead." 13 else 14 exit -1 15 fi 10 16 fi 11 17 … … 17 23 18 24 echo "Downloading the source code from ftp.gnu.org..." 19 wgetftp://ftp.gnu.org/gnu/glpk/glpk-${glpk_ver}.tar.gz25 $wgetcmd ftp://ftp.gnu.org/gnu/glpk/glpk-${glpk_ver}.tar.gz 20 26 21 27 echo "Uncompressing the tarball..."
Note: See TracChangeset
for help on using the changeset viewer.