2008-10-08 23:54:44 +02:00
|
|
|
# Template build file for 'sqlite'.
|
|
|
|
pkgname=sqlite
|
2012-05-15 07:58:45 +02:00
|
|
|
version=3.7.12
|
|
|
|
_amalgamationver=3071200
|
2011-04-08 18:09:30 +02:00
|
|
|
wrksrc=sqlite
|
|
|
|
create_wrksrc=yes
|
2011-04-14 15:03:11 +02:00
|
|
|
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
|
2008-10-08 23:54:44 +02:00
|
|
|
short_desc="SQL Database Engine in a C Library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-08-11 10:01:41 +02:00
|
|
|
homepage="http://www.sqlite.org"
|
|
|
|
license="Public Domain"
|
2012-05-15 07:58:45 +02:00
|
|
|
checksum=ca1735d13975be84cba87ea1b62ae0ab01fdc01ef21d7547982a2b118c9fc649
|
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 build readline-devel
|
|
|
|
Add_dependency build tcl-devel
|
2009-04-19 01:47:35 +02:00
|
|
|
|
2012-03-21 22:53:43 +01:00
|
|
|
do_configure() {
|
2011-08-11 10:01:41 +02:00
|
|
|
export CFLAGS="$XBPS_CFLAGS -DSQLITE_ENABLE_FTS3=1 \
|
2011-04-08 18:09:30 +02:00
|
|
|
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
|
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
2011-08-11 10:01:41 +02:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS}
|
2011-04-08 18:09:30 +02:00
|
|
|
|
2011-04-14 15:03:11 +02:00
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
|
2011-08-11 10:01:41 +02:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite
|
2011-11-02 21:42:31 +01:00
|
|
|
}
|
|
|
|
|
2012-03-21 22:53:43 +01:00
|
|
|
do_build() {
|
2011-11-02 21:42:31 +01:00
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
|
|
make ${makejobs}
|
|
|
|
|
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
|
2011-04-08 18:09:30 +02:00
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
2012-03-21 22:53:43 +01:00
|
|
|
do_install() {
|
2011-04-08 18:09:30 +02:00
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
|
|
make DESTDIR=${DESTDIR} install
|
2011-04-14 15:03:11 +02:00
|
|
|
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
|
2011-04-08 18:09:30 +02:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2009-04-19 01:47:35 +02:00
|
|
|
}
|