sqlite: update to 3.6.21.

--HG--
extra : convert_revision : c2241e53f47e07eec5220ddd74d45b9064f89eac
This commit is contained in:
Juan RP 2009-12-09 09:53:06 +01:00
parent 7c84ea2bcd
commit c9b0f09a19
3 changed files with 24 additions and 6 deletions

1
srcpkgs/sqlite-tcl Symbolic link
View file

@ -0,0 +1 @@
sqlite

View file

@ -0,0 +1,15 @@
# Template file for 'sqlite-tcl'.
#
short_desc="${sourcepkg} TCL bindings"
long_desc="${long_desc}
This package contains TCL bindings for sqlite."
Add_dependency run sqlite
Add_dependency run tcl
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/tcl* ${DESTDIR}/usr/lib
}

View file

@ -1,14 +1,14 @@
# Template build file for 'sqlite'. # Template build file for 'sqlite'.
pkgname=sqlite pkgname=sqlite
version=3.6.17 version=3.6.21
distfiles="http://sqlite.org/$pkgname-$version.tar.gz" distfiles="http://sqlite.org/$pkgname-$version.tar.gz"
build_style=gnu_configure build_style=gnu_configure
configure_env="CPPFLAGS=-DSQLITE_ENABLE_COLUMN_METADATA=1 LIBS=-ldl" configure_env="CPPFLAGS=-DSQLITE_ENABLE_COLUMN_METADATA=1 LIBS=-ldl"
configure_args="--disable-tcl --enable-load-extension --enable-threadsafe configure_args="--enable-load-extension --enable-threadsafe
--enable-threads-override-locks --enable-cross-thread-connections" --enable-threads-override-locks --enable-cross-thread-connections"
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=490385689cf8113499a9f66bd96f64824b597ba77be54dd7a0fdf744483a2ef8 checksum=675bd7b2fbdbbfbbcb44b8567d3b43237003f1fba8047639646d101699f24d21
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
@ -21,9 +21,11 @@ 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" subpackages="$pkgname-devel $pkgname-tcl"
Add_dependency full glibc Add_dependency run glibc
Add_dependency full readline Add_dependency run readline
Add_dependency build readline-devel
Add_dependency build tcl-devel
post_install() post_install()
{ {