Magellan Linux

Contents of /trunk/core/sqlite/sqlite-3.6.16-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2854 - (show annotations) (download)
Sun Jul 12 08:53:06 2009 UTC (14 years, 9 months ago) by niro
File size: 917 byte(s)
auto added: ver bump to 3.6.16-r1
1 # $Id$
2
3 PNAME="sqlite"
4 PVER="3.6.16"
5 PBUILD="r1"
6
7 PCATEGORIE="dev-db"
8 STATE="unstable"
9
10 DESCRIPTION="SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine."
11 HOMEPAGE="http://www.sqlite.org/"
12
13 DEPEND=""
14
15 SRCFILE="${PNAME}-${PVER}.tar.gz"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild
19
20 SRC_URI=(
21 http://www.sqlite.org/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd http://www.sqlite.org | grep -A2 Current | sed -n 's/.*Version \(.*\) of.*/\1/;$ p'"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 # enable column metadata support
32 export CFLAGS="${CFLAGS} -DSQLITE_ENABLE_COLUMN_METADATA"
33 export CXXFLAGS="${CXXFLAGS} -DSQLITE_ENABLE_COLUMN_METADATA"
34
35 mconfigure \
36 --enable-incore-db \
37 --enable-tempdb-in-ram \
38 --enable-cross-thread-connections \
39 --enable-threadsafe \
40 --disable-tcl \
41 --disable-debug \
42 || die
43
44 mmake all || die
45 }

Properties

Name Value
svn:keywords Id