diff options
author | Ulrich Klauer <ulrich@chirlu.de> | 2013-03-30 21:44:18 (GMT) |
---|---|---|
committer | Ulrich Klauer <ulrich@chirlu.de> | 2013-03-30 21:44:18 (GMT) |
commit | cb83f4e85b6e4811177a33deb8696f5e0b6a18f7 (patch) | |
tree | a4a3b97c3586426eaf8eeb47502e38b6041957d0 | |
parent | f583fd15bce03e8c255c75d668cdaa7e3e403864 (diff) | |
download | mxe-cb83f4e85b6e4811177a33deb8696f5e0b6a18f7.zip mxe-cb83f4e85b6e4811177a33deb8696f5e0b6a18f7.tar.gz mxe-cb83f4e85b6e4811177a33deb8696f5e0b6a18f7.tar.bz2 |
Update package gsl
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | src/gsl.mk | 10 |
2 files changed, 6 insertions, 6 deletions
@@ -1243,7 +1243,7 @@ aptitude -t squeeze-backports install cmake yasm</pre> </tr> <tr> <td id="gsl-package">gsl</td> - <td id="gsl-version">1.14</td> + <td id="gsl-version">1.15</td> <td id="gsl-website"><a href="http://www.gnu.org/software/gsl/">GSL</a></td> </tr> <tr> @@ -3,17 +3,17 @@ PKG := gsl $(PKG)_IGNORE := -$(PKG)_CHECKSUM := e1a600e4fe359692e6f0e28b7e12a96681efbe52 +$(PKG)_CHECKSUM := d914f84b39a5274b0a589d9b83a66f44cd17ca8e $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := http://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := gcc define $(PKG)_UPDATE - $(WGET) -q -O- 'http://git.savannah.gnu.org/gitweb/?p=$(PKG).git;a=tags' | \ - grep '<a class="list subject"' | \ - $(SED) -n 's,.*<a[^>]*>[^0-9>]*\([0-9][^<]*\)<.*,\1,p' | \ - head -1 + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/$(PKG)/' | \ + $(SED) -n 's,.*<a href="gsl-\([0-9.]\+\).tar.gz".*,\1,p' | \ + $(SORT) -V | \ + tail -1 endef define $(PKG)_BUILD |