summaryrefslogtreecommitdiffstats
path: root/src/pixman.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-12-20 15:43:45 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-12-20 15:43:45 (GMT)
commit70b10b61f6f347d75c6eb87f691a63f7fb3d668c (patch)
tree1f508462930a3f40241905d13ac8850e6a5be097 /src/pixman.mk
parentd642031dfbf0d3174b6b9899782b15a1bc1dd8ab (diff)
downloadmxe-70b10b61f6f347d75c6eb87f691a63f7fb3d668c.zip
mxe-70b10b61f6f347d75c6eb87f691a63f7fb3d668c.tar.gz
mxe-70b10b61f6f347d75c6eb87f691a63f7fb3d668c.tar.bz2
avoid all old 0.16.x versions of package pixman
Diffstat (limited to 'src/pixman.mk')
-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