Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6050 - (hide annotations) (download)
Wed Aug 18 11:35:43 2010 UTC (13 years, 9 months ago) by niro
File size: 871 byte(s)
auto added: ver bump to 3.7.0.1-r1
1 niro 6042 # $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 niro 6045 DEPEND=">= sys-libs/readline-6.1"
14 niro 6042
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 niro 6050 # disable tcl not working
32     # --disable-tcl \
33 niro 6042 mconfigure \
34 niro 6049 --enable-load-extension \
35 niro 6045 --enable-readline \
36 niro 6046 --enable-cross-thread-connections \
37 niro 6042 --enable-threadsafe \
38     --disable-debug \
39     || die
40    
41     mmake all || die
42     }