summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pixman.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pixman.mk b/src/pixman.mk
index 94848d0..8c3a793 100644
--- a/src/pixman.mk
+++ b/src/pixman.mk
@@ -31,9 +31,10 @@ $(PKG)_URL := http://cairographics.org/releases/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
- wget -q -O- 'http://cairographics.org/releases/' | \
- grep 'LATEST-pixman-' | \
- $(SED) -n 's,.*"LATEST-pixman-\([0-9][^"]*\)".*,\1,p' | \
+ wget -q -O- 'http://cairographics.org/releases/?C=M;O=D' | \
+ grep '<a href="pixman-' | \
+ $(SED) -n 's,.*<a href="pixman-\([0-9][^"]*\)\.tar.*,\1,p' | \
+ grep -v '0\.16\.' | \
head -1
endef