package libharu: fix update macro

This commit is contained in:
Tony Theodore 2013-03-25 19:38:00 +11:00
parent c7ce0bc28a
commit e40405de5a
1 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# See index.html for further information.
PKG := libharu
$(PKG)_IGNORE :=
$(PKG)_IGNORE := 2.2.0
$(PKG)_CHECKSUM := b75ec6052b8d72aa7f23d67adcdf9df4847b64ca
$(PKG)_SUBDIR := libharu-$($(PKG)_VERSION)
$(PKG)_FILE := libharu-$($(PKG)_VERSION).tar.gz
@ -10,9 +10,10 @@ $(PKG)_URL := http://libharu.org/files/$($(PKG)_FILE)
$(PKG)_DEPS := gcc zlib libpng
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://libharu.org/files/?C=M;O=D' | \
$(SED) -n 's,.*libharu-\([0-9][^>]*\)\.tar.*,\1,p' | \
grep -v 'rc' | \
$(WGET) -q -O- 'https://github.com/libharu/libharu/tags' | \
$(SED) -n 's,.*/archive/RELEASE_\([0-9][^"]*\)\.tar.*,\1,p' | \
$(SED) 's,_,.,g' | \
grep -v 'RC' | \
head -1
endef