diff options
Diffstat (limited to 'abs/core-testing/sqlite3/PKGBUILD')
-rw-r--r-- | abs/core-testing/sqlite3/PKGBUILD | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/abs/core-testing/sqlite3/PKGBUILD b/abs/core-testing/sqlite3/PKGBUILD index eb1dbc6..b40c3ee 100644 --- a/abs/core-testing/sqlite3/PKGBUILD +++ b/abs/core-testing/sqlite3/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 12988 2008-09-25 16:26:35Z andyrtr $ +# $Id: PKGBUILD 22976 2008-12-30 11:35:01Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=sqlite3 -pkgver=3.6.3 -pkgrel=1 +pkgver=3.6.7 +pkgrel=2 pkgdesc="A C library that implements an SQL database engine" arch=('i686' 'x86_64') license=('custom') @@ -14,19 +14,21 @@ makedepends=('tcl') conflicts=('sqlite') replaces=('sqlite') source=(http://www.sqlite.org/sqlite-$pkgver.tar.gz - sqlite-3.5.8-pkgconfig-version.patch license.txt) options=(!libtool) -md5sums=('671d2715f33158abc47a7a2ddd6066c5' - '025965a176173eaf21877f6daed088d4' +md5sums=('5223d1f459b608ed8c2c54f8847f8e1a' 'c1cdbc5544034d9012e421e75a5e4890') build() { cd ${srcdir}/sqlite-${pkgver} - patch -Np1 -i ${srcdir}/sqlite-3.5.8-pkgconfig-version.patch || return 1 - ./configure --prefix=/usr --enable-threadsafe --disable-static || return 1 + export LTLINK_EXTRAS="-ldl" + export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1" + ./configure --prefix=/usr \ + --enable-threadsafe \ + --disable-static \ + --enable-load-extension || return 1 make || return 1 - make DESTDIR=${pkgdir} install + make DESTDIR=${pkgdir} install || return 1 install -Dm0644 sqlite3.1 ${pkgdir}/usr/share/man/man1/sqlite3.1 # license |