void-packages/srcpkgs/sqlite/template

51 lines
1.6 KiB
Text
Raw Normal View History

# Template build file for 'sqlite'.
pkgname=sqlite
2011-05-22 10:54:27 +00:00
version=3.7.6.3
_amalgamationver=3070603
2011-04-08 16:09:30 +00:00
wrksrc=sqlite
create_wrksrc=yes
2011-04-14 13:03:11 +00:00
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
2011-04-08 16:09:30 +00:00
build_style=custom-install
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-05-22 10:54:27 +00:00
checksum=bd96d66c8a140776720c028f2eb09d4ff4b0bf9bde2f4f4cb707e26aad873b9a
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 16:09:30 +00:00
do_build()
{
2011-04-08 16:09:30 +00: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}
2011-04-14 13:03:11 +00:00
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
2011-04-08 16:09:30 +00:00
./configure --prefix=/usr --with-system-sqlite
make ${makejobs}
}
do_install()
{
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
}