void-packages/srcpkgs/sqlite/template
2015-05-21 11:22:24 +02:00

31 lines
948 B
Bash

# Template build file for 'sqlite'.
pkgname=sqlite
version=3.8.10.2
revision=1
_amalgamationver=3081002
wrksrc="sqlite-autoconf-${_amalgamationver}"
build_pie=yes
build_style=gnu-configure
configure_args="--enable-threadsafe --enable-readline --enable-dynamic-extensions"
makedepends="readline-devel"
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://www.sqlite.org"
license="Public Domain"
distfiles="http://www.sqlite.org/2015/sqlite-autoconf-${_amalgamationver}.tar.gz"
checksum=8382e55a4e7d853c93038562ca3dd00307937fccf1c6b65ddd813e503a56d626
CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
disable_parallel_build=yes
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"
}
}