void-packages/srcpkgs/sqlite/template
2014-02-04 13:37:04 +01:00

35 lines
979 B
Plaintext

# Template build file for 'sqlite'.
pkgname=sqlite
version=3.8.3
revision=1
_amalgamationver=3080300
wrksrc="sqlite-autoconf-${_amalgamationver}"
build_style=gnu-configure
makedepends="readline-devel"
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.sqlite.org"
license="Public Domain"
distfiles="http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz"
checksum=dabe38cf6732a9dfd57e9a2d2629dfb12ea3f2bf8948987f91318d01e6f72a26
do_configure() {
export CFLAGS+=" -DSQLITE_ENABLE_FTS3=1 \
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
./configure ${configure_args} --enable-threadsafe \
--enable-readline --enable-dynamic-extensions
}
sqlite-devel_package() {
depends="sqlite>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}