40 lines
1 KiB
Text
40 lines
1 KiB
Text
# Template build file for 'sqlite'.
|
|
pkgname=sqlite
|
|
version=3.8.0
|
|
revision=1
|
|
_amalgamationver=3071700
|
|
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/2013/sqlite-autoconf-${_amalgamationver}.tar.gz"
|
|
checksum=8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf
|
|
|
|
do_configure() {
|
|
export CFLAGS="$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"
|
|
}
|
|
}
|
|
|
|
sqlite_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|