2008-10-08 23:54:44 +02:00
|
|
|
# Template build file for 'sqlite'.
|
|
|
|
pkgname=sqlite
|
2011-04-08 18:09:30 +02:00
|
|
|
version=3.7.5
|
|
|
|
_amalgamationver=3070500
|
|
|
|
wrksrc=sqlite
|
|
|
|
create_wrksrc=yes
|
|
|
|
distfiles="
|
|
|
|
http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz
|
|
|
|
http://www.sqlite.org/sqlite-tea-${_amalgamationver}.tar.gz"
|
|
|
|
build_style=custom-install
|
2008-10-08 23:54:44 +02:00
|
|
|
short_desc="SQL Database Engine in a C Library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-04-08 18:09:30 +02:00
|
|
|
checksum="
|
|
|
|
cb5b86926ec9f65882b2dddd244f2d620337d911ec73411863f77e48cf6a2f94
|
|
|
|
7404ea2d1e6e623e2dfedc3bba4f81d4a7a65e69844a2ab8fbdfb8f4067401a7"
|
2008-10-08 23:54:44 +02:00
|
|
|
long_desc="
|
|
|
|
SQLite is a C library that implements an SQL database engine. Programs
|
|
|
|
that link with the SQLite library can have SQL database access without
|
|
|
|
running a separate RDBMS process. The distribution comes with a standalone
|
|
|
|
command-line access program (sqlite) that can be used to administer an
|
|
|
|
SQLite database and which serves as an example of how to use the SQLite
|
|
|
|
library.
|
|
|
|
|
|
|
|
SQLite is not a client library used to connect to a big database server.
|
|
|
|
SQLite is the server. The SQLite library reads and writes directly to and
|
|
|
|
from the database files on disk."
|
2009-04-19 01:47:35 +02:00
|
|
|
|
2009-12-09 09:53:06 +01:00
|
|
|
subpackages="$pkgname-devel $pkgname-tcl"
|
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run readline
|
|
|
|
Add_dependency build readline-devel
|
|
|
|
Add_dependency build tcl-devel
|
2009-04-19 01:47:35 +02:00
|
|
|
|
2011-04-08 18:09:30 +02:00
|
|
|
do_build()
|
2009-04-19 01:47:35 +02:00
|
|
|
{
|
2011-04-08 18:09:30 +02:00
|
|
|
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
|
|
|
|
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
|
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make ${makejobs}
|
|
|
|
|
|
|
|
cd ${wrksrc}/sqlite-tea-${_amalgamationver}
|
|
|
|
./configure --prefix=/usr --with-system-sqlite
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
cd ${wrksrc}/sqlite-tea-${_amalgamationver}
|
|
|
|
make DESTDIR=${DESTDIR} install
|
2009-04-19 01:47:35 +02:00
|
|
|
}
|