void-packages/srcpkgs/sqlite/template

53 lines
1.8 KiB
Plaintext
Raw Normal View History

# Template build file for 'sqlite'.
pkgname=sqlite
2012-09-04 15:38:20 +02:00
version=3.7.14
2012-06-12 21:05:38 +02:00
revision=1
2011-04-08 18:09:30 +02:00
wrksrc=sqlite
create_wrksrc=yes
2012-05-24 21:57:18 +02:00
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>"
2011-08-11 10:01:41 +02:00
homepage="http://www.sqlite.org"
license="Public Domain"
2012-09-04 15:38:20 +02:00
_amalgamationver=3071400
2012-05-24 21:57:18 +02:00
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
2012-09-04 15:38:20 +02:00
checksum=de6c01d9fabf4d10733b1920d9a3143634ed516b90f4759b3b5b79857a39b724
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."
2012-03-21 22:53:43 +01:00
do_configure() {
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
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-11-02 21:42:31 +01:00
}
2012-03-21 22:53:43 +01:00
do_build() {
2011-11-02 21:42:31 +01:00
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make ${makejobs}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
2011-04-08 18:09:30 +02:00
make ${makejobs}
}
2012-03-21 22:53:43 +01:00
do_install() {
2011-04-08 18:09:30 +02:00
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
}