annotate src/sqlite.mk @ 4358:bd2098fa2f4d

sqlite: update to 3.17.0 * src/sqlite.mk: update version, checksum
author John D
date Mon, 13 Mar 2017 08:13:02 -0400
parents a3a8ba2c39bd
children bff635666945
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2288
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 409
diff changeset
3
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := sqlite
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
5 $(PKG)_IGNORE :=
4358
bd2098fa2f4d sqlite: update to 3.17.0
John D
parents: 4350
diff changeset
6 $(PKG)_VERSION := 3170000
bd2098fa2f4d sqlite: update to 3.17.0
John D
parents: 4350
diff changeset
7 $(PKG)_CHECKSUM := 7bcff1c158ed9e2c0e159c1b4b6c36d4d65dff8c
1498
1bb2b5a951f5 fixed package sqlite
Volker Grabsch <vog@notjusthosting.com>
parents: 1494
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-autoconf-$($(PKG)_VERSION)
1499
9e587ca588dc remove $($PKG)_SUBDIR) from FILE and URL defintions
Mark Brand <mabrand@mabrand.nl>
parents: 1498
diff changeset
9 $(PKG)_FILE := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
4317
021b8578c08f * src/sqlite.mk: update to v3.16.0
John D
parents: 4268
diff changeset
10 $(PKG)_URL := http://www.sqlite.org/2017/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS :=
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2517
diff changeset
14 $(WGET) -q -O- 'http://www.sqlite.org/download.html' | \
1494
a4a89d5e4558 upgrade package sqlite
Mark Brand <mabrand@mabrand.nl>
parents: 1306
diff changeset
15 $(SED) -n 's,.*sqlite-autoconf-\([0-9][^>]*\)\.tar.*,\1,p' | \
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2813
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
23 --prefix='$(HOST_PREFIX)' \
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 --disable-readline \
935
9993be51f18d disable the use of the buggy Pthreads-w32 library in packages freetds, guile, libmikmod, libshout, libxml2, sqlite, tiff, vorbis and xerces
Volker Grabsch <vog@notjusthosting.com>
parents: 831
diff changeset
25 --disable-threadsafe
4008
332e6ebba379 * sqlite.mk: Avoid parallel build problem.
John W. Eaton <jwe@octave.org>
parents: 4001
diff changeset
26 $(MAKE) -C '$(1)' -j 1
3606
9b46971891dd sqlite: update sqlite
John Donoghue
parents: 3480
diff changeset
27 $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)'
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 endef