# Description: Librairie C qui implémente un moteur de base de données SQL # URL: http://www.sqlite.org/ # Maintainer: Richard Hipp, Dan Kennedy # Packager: thierryn1 at hispeed dot ch # Depends on: name=sqlite3 version=3.7.13 release=1 _amalgamationver=3071300 _amalgamationver2=${_amalgamationver/00/} pkgver=${_amalgamationver2//0/.} source=(http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip ) build() { export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" cd $SRC/sqlite-autoconf-$_amalgamationver ./configure --prefix=/usr \ --enable-static \ --enable-threadsafe \ --enable-readline \ --enable-dynamic-extensions make make DESTDIR=$PKG install cd $SRC/sqlite-autoconf-$_amalgamationver/tea ./configure --prefix=/usr \ --with-system-sqlite make make DESTDIR=$PKG install }