void-packages/srcpkgs/sqlite/template
2012-06-12 21:05:38 +02:00

53 lines
1.8 KiB
Plaintext

# Template build file for 'sqlite'.
pkgname=sqlite
version=3.7.13
revision=1
wrksrc=sqlite
create_wrksrc=yes
subpackages="$pkgname-devel $pkgname-tcl"
makedepends="readline-devel tcl-devel"
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.sqlite.org"
license="Public Domain"
_amalgamationver=3071300
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
checksum=ac566819f82ec4cc2ff6c5cc90987ca38e589efbd79ff263838bbc62356ab119
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."
do_configure() {
export CFLAGS="$XBPS_CFLAGS -DSQLITE_ENABLE_FTS3=1 \
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
./configure ${CONFIGURE_SHARED_ARGS}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite
}
do_build() {
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make ${makejobs}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
make ${makejobs}
}
do_install() {
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make DESTDIR=${DESTDIR} install
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
make DESTDIR=${DESTDIR} install
}