sqlite: update to 3.7.9.

This commit is contained in:
Juan RP 2011-11-02 21:42:31 +01:00
parent d40b2faea6
commit ed4f3aae1a

View file

@ -1,7 +1,7 @@
# Template build file for 'sqlite'. # Template build file for 'sqlite'.
pkgname=sqlite pkgname=sqlite
version=3.7.8 version=3.7.9
_amalgamationver=3070800 _amalgamationver=3070900
wrksrc=sqlite wrksrc=sqlite
create_wrksrc=yes create_wrksrc=yes
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz" distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
@ -9,7 +9,7 @@ short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.sqlite.org" homepage="http://www.sqlite.org"
license="Public Domain" license="Public Domain"
checksum=fd8c7f70db7e06b51196efccb937f2a657abc7b27ef61fe3a7fb8e72ac4dfa32 checksum=7be6cdb375505e5d9a4aee88b2ddb6ea0d9d29c9545114ff77b345e1fa812439
long_desc=" long_desc="
SQLite is a C library that implements an SQL database engine. Programs SQLite is a C library that implements an SQL database engine. Programs
that link with the SQLite library can have SQL database access without that link with the SQLite library can have SQL database access without
@ -28,17 +28,24 @@ Add_dependency run readline
Add_dependency build readline-devel Add_dependency build readline-devel
Add_dependency build tcl-devel Add_dependency build tcl-devel
do_build() do_configure()
{ {
export CFLAGS="$XBPS_CFLAGS -DSQLITE_ENABLE_FTS3=1 \ export CFLAGS="$XBPS_CFLAGS -DSQLITE_ENABLE_FTS3=1 \
-DSQLITE_ENABLE_COLUMN_METADATA=1 \ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver} cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
./configure ${CONFIGURE_SHARED_ARGS} ./configure ${CONFIGURE_SHARED_ARGS}
make ${makejobs}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite ./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite
}
do_build()
{
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make ${makejobs}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
make ${makejobs} make ${makejobs}
} }