upgrade package sqlite

This commit is contained in:
Mark Brand 2010-12-08 09:32:17 +01:00
parent 186b46c67e
commit 0c92fdcc82
1 changed files with 6 additions and 6 deletions

View File

@ -4,18 +4,18 @@
# SQLite
PKG := sqlite
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.7.3
$(PKG)_CHECKSUM := af3740819547f0dba52e096045525329f645c54f
$(PKG)_SUBDIR := sqlite-$($(PKG)_VERSION)
$(PKG)_FILE := sqlite-amalgamation-$($(PKG)_VERSION).tar.gz
$(PKG)_VERSION := 3070400
$(PKG)_CHECKSUM := b57dce795c377c038d066076d2c62e4bd028e78f
$(PKG)_SUBDIR := sqlite-3.7.4
$(PKG)_FILE := sqlite-autoconf-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://www.sqlite.org/
$(PKG)_URL := http://www.sqlite.org/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
wget -q -O- 'http://www.sqlite.org/download.html' | \
grep 'sqlite-amalgamation-' | \
$(SED) -n 's,.*sqlite-amalgamation-\([0-9][^>]*\)\.tar.*,\1,p' | \
grep 'sqlite-autoconf-' | \
$(SED) -n 's,.*sqlite-autoconf-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef