sqlite: update to 3.7.7.1.

This commit is contained in:
Juan RP 2011-08-11 10:01:41 +02:00
parent 10239c2af6
commit 35db4d868a

View file

@ -1,14 +1,16 @@
# Template build file for 'sqlite'. # Template build file for 'sqlite'.
pkgname=sqlite pkgname=sqlite
version=3.7.6.3 version=3.7.7.1
_amalgamationver=3070603 _amalgamationver=3070701
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"
build_style=custom-install build_style=custom-install
short_desc="SQL Database Engine in a C Library" short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=bd96d66c8a140776720c028f2eb09d4ff4b0bf9bde2f4f4cb707e26aad873b9a homepage="http://www.sqlite.org"
license="Public Domain"
checksum=7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf
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
@ -29,15 +31,15 @@ Add_dependency build tcl-devel
do_build() do_build()
{ {
export CFLAGS="$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 --prefix=/usr ./configure ${CONFIGURE_SHARED_ARGS}
make ${makejobs} make ${makejobs}
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
./configure --prefix=/usr --with-system-sqlite ./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite
make ${makejobs} make ${makejobs}
} }