void-packages/srcpkgs/sqlite/template

41 lines
1 KiB
Text
Raw Normal View History

# Template build file for 'sqlite'.
pkgname=sqlite
2013-12-07 07:18:04 +00:00
version=3.8.2
2013-08-30 09:58:58 +00:00
revision=1
2013-12-07 07:18:04 +00:00
_amalgamationver=3080200
2013-08-26 15:21:10 +00:00
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>"
2011-08-11 08:01:41 +00:00
homepage="http://www.sqlite.org"
license="Public Domain"
2013-03-19 16:54:50 +00:00
distfiles="http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz"
2013-12-07 07:18:04 +00:00
checksum=a0851d06092c8208e4dd947f569f40db476b472b22e3e10e2f52f3c5e94fef92
2012-03-21 21:53:43 +00:00
do_configure() {
2013-04-27 08:25:13 +00:00
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
2011-04-08 16:09:30 +00:00
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
./configure ${configure_args} --enable-threadsafe \
--enable-readline --enable-dynamic-extensions
2011-11-02 20:42:31 +00:00
}
sqlite-devel_package() {
2013-10-18 16:26:49 +00:00
depends="sqlite>=${version}_${revision}"
2013-05-20 18:45:02 +00:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
2013-08-26 15:21:10 +00:00
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}
sqlite_package() {
pkg_install() {
2013-10-18 16:26:49 +00:00
vmove all
}
}