Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9028 - (hide annotations) (download)
Mon Oct 3 12:19:14 2011 UTC (12 years, 8 months ago) by niro
File size: 865 byte(s)
auto added: ver bump to 3.7.8-r1
1 niro 9028 # $Id$
2    
3     PNAME="sqlite"
4     PVER="3.7.8"
5     PBUILD="r1"
6    
7     PCATEGORIE="dev-db"
8    
9     DESCRIPTION="SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine."
10     HOMEPAGE="http://www.sqlite.org/"
11    
12     DEPEND=">= sys-libs/readline-6.2"
13    
14     UPSTREAM_PVER="${PVER//./0}"
15     SRCFILE="${PNAME}-autoconf-${UPSTREAM_PVER}.tar.gz" # a special srcfile is needed to build without tcl
16     SRCDIR="${BUILDDIR}/${PNAME}-autoconf-${UPSTREAM_PVER}"
17    
18     sminclude multilib
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     mconfigure \
30     --enable-load-extension \
31     --enable-readline \
32     --enable-cross-thread-connections \
33     --enable-threadsafe \
34     --disable-tcl \
35     --disable-debug \
36     || die
37    
38     mmake || die
39     }