void-packages/srcpkgs/sqlite/template

52 lines
1.7 KiB
Plaintext
Raw Normal View History

# Template build file for 'sqlite'.
pkgname=sqlite
2011-09-28 09:39:43 +02:00
version=3.7.8
_amalgamationver=3070800
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"
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"
2011-09-28 09:39:43 +02:00
checksum=fd8c7f70db7e06b51196efccb937f2a657abc7b27ef61fe3a7fb8e72ac4dfa32
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."
subpackages="$pkgname-devel $pkgname-tcl"
Add_dependency run glibc
Add_dependency run readline
Add_dependency build readline-devel
Add_dependency build tcl-devel
2011-04-08 18:09:30 +02:00
do_build()
{
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
make ${makejobs}
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-04-08 18:09:30 +02:00
make ${makejobs}
}
do_install()
{
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
}