Magellan Linux

Contents of /branches/magellan-next/core/sqlite/sqlite-3.7.0.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6052 - (show annotations) (download)
Wed Aug 18 11:43:14 2010 UTC (13 years, 8 months ago) by niro
File size: 950 byte(s)
auto added: ver bump to 3.7.0.1-r1
1 # $Id: sqlite-3.6.18-r1.smage2 3179 2009-10-14 10:38:53Z niro $
2
3 PNAME="sqlite"
4 PVER="3.7.0.1"
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=">= sys-libs/readline-6.1"
14
15 #SRCFILE="${PNAME}-${PVER}.tar.gz"
16 SRCFILE="${PNAME}-amalgamation-${PVER}.tar.gz" # a special srcfile is needed to build without tcl
17 SRCDIR="${BUILDDIR}/${PNAME}-amalgamation-${PVER}"
18
19 sminclude mbuild
20
21 SRC_URI=(
22 http://www.sqlite.org/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 )
25
26 UP2DATE="updatecmd http://www.sqlite.org | grep -A2 Current | sed -n 's/.*Version \(.*\) of.*/\1/;$ p'"
27
28 src_compile()
29 {
30 cd ${SRCDIR}
31
32 mconfigure \
33 --enable-load-extension \
34 --enable-readline \
35 --enable-cross-thread-connections \
36 --enable-threadsafe \
37 --disable-tcl \
38 --disable-debug \
39 || die
40
41 mmake || die
42 }