You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/sqlite.mk

31 lines
940 B

# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# SQLite
PKG := sqlite
$(PKG)_IGNORE :=
$(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-autoconf-' | \
$(SED) -n 's,.*sqlite-autoconf-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-readline \
--disable-threadsafe
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef