Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7623 - (hide annotations) (download)
Fri May 27 19:55:39 2011 UTC (13 years ago) by niro
File size: 884 byte(s)
-fixed SRCFILE
1 niro 7622 # $Id$
2    
3     PNAME="sqlite"
4     PVER="3.7.6.3"
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.2"
14    
15 niro 7623 UPSTREAM_PVER="${PVER//./0}"
16 niro 7622 SRCFILE="${PNAME}-autoconf-${UPSTREAM_PVER}.tar.gz" # a special srcfile is needed to build without tcl
17     SRCDIR="${BUILDDIR}/${PNAME}-autoconf-${UPSTREAM_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     }