2008-10-08 23:54:44 +02:00
|
|
|
# Template build file for 'sqlite'.
|
|
|
|
pkgname=sqlite
|
2009-08-10 22:53:55 +02:00
|
|
|
version=3.6.17
|
2008-10-28 23:57:52 +01:00
|
|
|
distfiles="http://sqlite.org/$pkgname-$version.tar.gz"
|
2008-10-08 23:54:44 +02:00
|
|
|
build_style=gnu_configure
|
2009-04-19 01:47:35 +02:00
|
|
|
configure_env="CPPFLAGS=-DSQLITE_ENABLE_COLUMN_METADATA=1 LIBS=-ldl"
|
|
|
|
configure_args="--disable-tcl --enable-load-extension --enable-threadsafe
|
|
|
|
--enable-threads-override-locks --enable-cross-thread-connections"
|
2008-10-08 23:54:44 +02:00
|
|
|
short_desc="SQL Database Engine in a C Library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-08-10 22:53:55 +02:00
|
|
|
checksum=490385689cf8113499a9f66bd96f64824b597ba77be54dd7a0fdf744483a2ef8
|
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-11-22 08:31:44 +01:00
|
|
|
subpackages="$pkgname-devel"
|
2009-04-19 01:47:35 +02:00
|
|
|
Add_dependency full glibc
|
|
|
|
Add_dependency full readline
|
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Install the manpage
|
|
|
|
install -D -m644 ${wrksrc}/sqlite3.1 \
|
|
|
|
${DESTDIR}/usr/share/man/man1/sqlite3.1
|
|
|
|
}
|