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