mxe/src/sqlite.mk

26 lines
797 B
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2009-04-15 10:03:55 +01:00
PKG := sqlite
$(PKG)_IGNORE :=
2016-11-28 21:25:03 +00:00
$(PKG)_VERSION := 3150200
$(PKG)_CHECKSUM := 07b35063b9386865b78226cdaca9a299d938a87aaa8fdc4d73edb0cef30f3149
2010-12-11 22:19:47 +00:00
$(PKG)_SUBDIR := $(PKG)-autoconf-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
2016-01-06 14:56:06 +00:00
$(PKG)_URL := http://www.sqlite.org/2016/$($(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"
2015-05-08 11:07:30 +01:00
$(MAKE) -C '$(1)' -j 1 install
2009-04-15 10:03:55 +01:00
endef