From 35db4d868a087f464997d4aab4d468a6c132769d Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 11 Aug 2011 10:01:41 +0200 Subject: [PATCH] sqlite: update to 3.7.7.1. --- srcpkgs/sqlite/template | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/srcpkgs/sqlite/template b/srcpkgs/sqlite/template index e5f6f9a6b74..bfef74f1ea8 100644 --- a/srcpkgs/sqlite/template +++ b/srcpkgs/sqlite/template @@ -1,14 +1,16 @@ # Template build file for 'sqlite'. pkgname=sqlite -version=3.7.6.3 -_amalgamationver=3070603 +version=3.7.7.1 +_amalgamationver=3070701 wrksrc=sqlite create_wrksrc=yes distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz" build_style=custom-install short_desc="SQL Database Engine in a C Library" maintainer="Juan RP " -checksum=bd96d66c8a140776720c028f2eb09d4ff4b0bf9bde2f4f4cb707e26aad873b9a +homepage="http://www.sqlite.org" +license="Public Domain" +checksum=7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf long_desc=" SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without @@ -29,15 +31,15 @@ Add_dependency build tcl-devel do_build() { - export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \ + export CFLAGS="$XBPS_CFLAGS -DSQLITE_ENABLE_FTS3=1 \ -DSQLITE_ENABLE_COLUMN_METADATA=1 \ -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" cd ${wrksrc}/sqlite-autoconf-${_amalgamationver} - ./configure --prefix=/usr + ./configure ${CONFIGURE_SHARED_ARGS} make ${makejobs} cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea - ./configure --prefix=/usr --with-system-sqlite + ./configure ${CONFIGURE_SHARED_ARGS} --with-system-sqlite make ${makejobs} }