sqlite: update to 3.7.12.1.

This commit is contained in:
Juan RP 2012-05-24 21:57:18 +02:00
parent 23bd1c4033
commit 1043434e2a
3 changed files with 13 additions and 20 deletions

View file

@ -1,16 +1,13 @@
# Template file for 'sqlite-devel'. # Template file for 'sqlite-devel'.
# #
depends="tcl-devel readline-devel glibc-devel sqlite" depends="tcl-devel readline-devel sqlite>=${version}"
short_desc="${sourcepkg} (development files)" short_desc="${sourcepkg} (development files)"
long_desc="${long_desc} long_desc="${long_desc}
This package contains files for development, headers, static libs, etc." This package contains files for development, headers, static libs, etc."
do_install() {
do_install() vmove usr/include usr
{ vmove "usr/lib/*.a" usr/lib
mkdir -p ${DESTDIR}/usr/lib vmove usr/lib/pkgconfig usr/lib
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
} }

View file

@ -1,14 +1,11 @@
# Template file for 'sqlite-tcl'. # Template file for 'sqlite-tcl'.
# #
depends="sqlite tcl" depends="sqlite>=$version tcl"
short_desc="${sourcepkg} TCL bindings" short_desc="${sourcepkg} TCL bindings"
long_desc="${long_desc} long_desc="${long_desc}
This package contains TCL bindings for sqlite." This package contains TCL bindings for sqlite."
do_install() {
do_install() vmove "usr/lib/sqlite*" usr/lib
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/sqlite* ${DESTDIR}/usr/lib
} }

View file

@ -1,16 +1,17 @@
# Template build file for 'sqlite'. # Template build file for 'sqlite'.
pkgname=sqlite pkgname=sqlite
version=3.7.11 version=3.7.12.1
_amalgamationver=3071100
wrksrc=sqlite wrksrc=sqlite
create_wrksrc=yes create_wrksrc=yes
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz" subpackages="$pkgname-devel $pkgname-tcl"
makedepends="readline-devel tcl-devel" makedepends="readline-devel tcl-devel"
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>"
homepage="http://www.sqlite.org" homepage="http://www.sqlite.org"
license="Public Domain" license="Public Domain"
checksum=2badc75dc536249bcd68c44d2a655724285d054303251eaff9d355194cb3476b _amalgamationver=3071201
distfiles="http://www.sqlite.org/sqlite-autoconf-${_amalgamationver}.tar.gz"
checksum=b4ce93881cb88e7d1d0f2ad50a206b600163b40fea6df9d0749ad152aaebf845
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
@ -23,8 +24,6 @@ long_desc="
SQLite is the server. The SQLite library reads and writes directly to and SQLite is the server. The SQLite library reads and writes directly to and
from the database files on disk." from the database files on disk."
subpackages="$pkgname-devel $pkgname-tcl"
do_configure() { 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 \