From 018925b3261461b36b614d8e3dab4b61bdf2c45e Mon Sep 17 00:00:00 2001 From: Volker Grabsch Date: Wed, 15 Apr 2009 11:03:55 +0200 Subject: new package: sqlite --- src/sqlite.mk | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/sqlite.mk diff --git a/src/sqlite.mk b/src/sqlite.mk new file mode 100644 index 0000000..884dc70 --- /dev/null +++ b/src/sqlite.mk @@ -0,0 +1,27 @@ +# SQLite + +PKG := sqlite +$(PKG)_VERSION := 3.6.13 +$(PKG)_CHECKSUM := 78395c994d7c920e83a419c69af7e4ce2f2b1ba0 +$(PKG)_SUBDIR := sqlite-$($(PKG)_VERSION) +$(PKG)_FILE := sqlite-amalgamation-$($(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' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --disable-readline \ + LIBS='-lws2_32' + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= +endef -- cgit v0.12