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

27 lines
781 B

# This file is part of MXE.
# See index.html for further information.
PKG := sqlite
$(PKG)_IGNORE :=
9 years ago
$(PKG)_VERSION := 3080900
$(PKG)_CHECKSUM := db70dee268700b312cbaa5b3e5cf8454e1c8b7b9
$(PKG)_SUBDIR := $(PKG)-autoconf-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
10 years ago
$(PKG)_URL := http://www.sqlite.org/2015/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.sqlite.org/download.html' | \
$(SED) -n 's,.*sqlite-autoconf-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--disable-readline \
--enable-threadsafe \
CFLAGS="-Os"
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef