annotate src/sqlite.mk @ 2349:f48c5b085a38

Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 11:07:07 +0200
parents f653602a0500
children 99516e73b368
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.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
diff changeset
2 # See doc/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 # SQLite
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 PKG := sqlite
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
6 $(PKG)_IGNORE :=
2288
cad7ebf06628 update package sqlite
Mark Brand <mabrand@mabrand.nl>
parents: 2211
diff changeset
7 $(PKG)_CHECKSUM := a768f76b10df84d6a2c66178544d42725a8fdaf0
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
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_URL := http://www.sqlite.org/$($(PKG)_FILE)
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 $(PKG)_DEPS := gcc
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
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
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 \
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 --host='$(TARGET)' \
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 --disable-shared \
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 --prefix='$(PREFIX)/$(TARGET)' \
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
318
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
0ca9c88dd82d new package: sqlite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 endef