41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
# Template build file for 'sqlite'.
|
|
pkgname=sqlite
|
|
version=3.8.2
|
|
revision=1
|
|
_amalgamationver=3080200
|
|
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=a0851d06092c8208e4dd947f569f40db476b472b22e3e10e2f52f3c5e94fef92
|
|
|
|
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 all
|
|
}
|
|
}
|