summaryrefslogtreecommitdiffstats
path: root/src/guile.mk
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2013-12-29 19:43:49 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2013-12-29 19:44:03 (GMT)
commit25ee3ce514b39eeed29eb00625696b811e9f0427 (patch)
tree380e7cdc142adc746c6f61e417d2a274d56c2059 /src/guile.mk
parent9e9378f9b9917b70b23fa9e107c862bf190febae (diff)
downloadmxe-25ee3ce514b39eeed29eb00625696b811e9f0427.zip
mxe-25ee3ce514b39eeed29eb00625696b811e9f0427.tar.gz
mxe-25ee3ce514b39eeed29eb00625696b811e9f0427.tar.bz2
guile: update and fix update macro
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src/guile.mk')
-rw-r--r--src/guile.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/guile.mk b/src/guile.mk
index 7b6a11c..8e83ac6 100644
--- a/src/guile.mk
+++ b/src/guile.mk
@@ -3,17 +3,19 @@
PKG := guile
$(PKG)_IGNORE := 2%
-$(PKG)_VERSION := 1.8.7
-$(PKG)_CHECKSUM := 24cd2f06439c76d41d982a7384fe8a0fe5313b54
+$(PKG)_VERSION := 1.8.8
+$(PKG)_CHECKSUM := 548d6927aeda332b117f8fc5e4e82c39a05704f9
$(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 libltdl gmp libiconv gettext libunistring gc libffi readline libgnurx
define $(PKG)_UPDATE
- $(WGET) -q -O- 'http://git.savannah.gnu.org/gitweb/?p=$(PKG).git;a=tags' | \
+ $(WGET) -q -O- 'http://git.savannah.gnu.org/gitweb/?p=guile.git;a=tags' | \
grep '<a class="list subject"' | \
$(SED) -n 's,.*<a[^>]*>[^0-9>]*\([0-9][^< ]*\)\.<.*,\1,p' | \
+ grep -v 2.* | \
+ $(SORT) -Vr | \
head -1
endef