mxe/src/sqlite.mk

27 lines
781 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
PKG := sqlite
$(PKG)_IGNORE :=
2014-06-04 19:25:03 +01:00
$(PKG)_VERSION := 3080500
$(PKG)_CHECKSUM := 7f667e10ccebc26ab2086b8a30cb0a600ca0acae
2010-12-11 22:19:47 +00:00
$(PKG)_SUBDIR := $(PKG)-autoconf-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
2014-02-04 08:29:40 +00:00
$(PKG)_URL := http://www.sqlite.org/2014/$($(PKG)_FILE)
2009-04-15 10:03:55 +01:00
$(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 \
$(MXE_CONFIGURE_OPTS) \
2009-04-15 10:03:55 +01:00
--disable-readline \
2014-03-10 21:06:08 +00:00
--enable-threadsafe \
CFLAGS="-Os"
2012-10-11 20:01:21 +01:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install
2009-04-15 10:03:55 +01:00
endef