# $Id: PKGBUILD 181034 2013-03-30 09:25:06Z andyrtr $ # Maintainer: Andreas Radke # Contributor: Tom Newsom pkgbase="sqlite" pkgname=('sqlite' 'sqlite-tcl') _amalgamationver=3071601 _docver=${_amalgamationver} #_docver=3071601 pkgver=3.7.16.1 pkgrel=1 pkgdesc="A C library that implements an SQL database engine" arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.sqlite.org/" makedepends=('tcl' 'readline') source=( # tarball containing the amalgamation for SQLite >= 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA) http://www.sqlite.org/2013/sqlite-autoconf-$_amalgamationver.tar.gz license.txt) options=('!libtool' '!emptydirs') sha1sums=('b0d9b3e2ca3c50f72e5921e9532130787871b7ae' 'f34f6daa4ab3073d74e774aad21d66878cf26853') build() { export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" # build sqlite cd "$srcdir"/sqlite-autoconf-$_amalgamationver ./configure --prefix=/usr \ --disable-static make # build the tcl extension cd "$srcdir"/sqlite-autoconf-$_amalgamationver/tea ./configure --prefix=/usr \ --with-system-sqlite make } package_sqlite() { pkgdesc="A C library that implements an SQL database engine" depends=('readline') provides=("sqlite3=$pkgver") replaces=("sqlite3") cd ${srcdir}/sqlite-autoconf-$_amalgamationver make DESTDIR=${pkgdir} install # license install -D -m644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt } package_sqlite-tcl() { pkgdesc="sqlite Tcl Extension Architecture (TEA)" depends=('sqlite') provides=("sqlite3-tcl=$pkgver") replaces=("sqlite3-tcl") cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea make DESTDIR=${pkgdir} install }