sqlite: update to 3.6.7.1.

This commit is contained in:
Juan RP 2011-04-14 15:03:11 +02:00
parent b11bbd837e
commit b9360ab6df

View file

@ -1,18 +1,14 @@
# Template build file for 'sqlite'. # Template build file for 'sqlite'.
pkgname=sqlite pkgname=sqlite
version=3.7.5 version=3.7.6.1
_amalgamationver=3070500 _amalgamationver=3070601
wrksrc=sqlite wrksrc=sqlite
create_wrksrc=yes create_wrksrc=yes
distfiles=" distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz
http://www.sqlite.org/sqlite-tea-${_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=" checksum=79b7de2483cbbfa79721c9414d4c7acda00ba98a8b1fe73460fe57c173651ad4
cb5b86926ec9f65882b2dddd244f2d620337d911ec73411863f77e48cf6a2f94
7404ea2d1e6e623e2dfedc3bba4f81d4a7a65e69844a2ab8fbdfb8f4067401a7"
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
@ -40,7 +36,7 @@ do_build()
./configure --prefix=/usr ./configure --prefix=/usr
make ${makejobs} make ${makejobs}
cd ${wrksrc}/sqlite-tea-${_amalgamationver} cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
./configure --prefix=/usr --with-system-sqlite ./configure --prefix=/usr --with-system-sqlite
make ${makejobs} make ${makejobs}
} }
@ -49,6 +45,6 @@ do_install()
{ {
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver} cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make DESTDIR=${DESTDIR} install make DESTDIR=${DESTDIR} install
cd ${wrksrc}/sqlite-tea-${_amalgamationver} cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}/tea
make DESTDIR=${DESTDIR} install make DESTDIR=${DESTDIR} install
} }