Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8430 - (show annotations) (download)
Mon Jul 18 18:24:04 2011 UTC (12 years, 9 months ago) by niro
File size: 867 byte(s)
auto added: ver bump to 3.7.7.1-r1
1 # $Id$
2
3 PNAME="sqlite"
4 PVER="3.7.7.1"
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 }