mxe/src/sqlite.mk

28 lines
844 B
Makefile
Raw Normal View History

2012-03-28 14:46:58 +01:00
# This file is part of MXE.
2012-03-29 11:14:15 +01:00
# See index.html for further information.
2009-04-15 10:03:55 +01:00
# SQLite
2009-04-15 10:03:55 +01:00
PKG := sqlite
$(PKG)_IGNORE :=
2012-03-20 15:29:23 +00:00
$(PKG)_CHECKSUM := a768f76b10df84d6a2c66178544d42725a8fdaf0
2010-12-11 22:19:47 +00:00
$(PKG)_SUBDIR := $(PKG)-autoconf-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
2009-04-15 10:03:55 +01:00
$(PKG)_URL := http://www.sqlite.org/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
wget -q -O- 'http://www.sqlite.org/download.html' | \
2010-12-08 08:32:17 +00:00
$(SED) -n 's,.*sqlite-autoconf-\([0-9][^>]*\)\.tar.*,\1,p' | \
2009-04-15 10:03:55 +01:00
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-readline \
--disable-threadsafe
2009-04-15 10:03:55 +01:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef