Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6732 - (show annotations) (download)
Wed Sep 22 12:40:01 2010 UTC (13 years, 7 months ago) by niro
File size: 922 byte(s)
auto added: ver bump to 3.7.2-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.2"
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}-${PVER}"
18
19 sminclude multilib
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 mconfigure \
31 --enable-load-extension \
32 --enable-readline \
33 --enable-cross-thread-connections \
34 --enable-threadsafe \
35 --disable-tcl \
36 --disable-debug \
37 || die
38
39 mmake || die
40 }