From 9291e062cb24bac5d7c7059d4dc64669c1917b33 Mon Sep 17 00:00:00 2001 From: tnut Date: Sun, 8 Jan 2012 12:12:28 +0100 Subject: aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sqlite3/Pkgfile | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 sqlite3/Pkgfile (limited to 'sqlite3/Pkgfile') diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile new file mode 100644 index 000000000..483cfc067 --- /dev/null +++ b/sqlite3/Pkgfile @@ -0,0 +1,55 @@ +# Description: Librairie C qui implémente un moteur de base de données SQL +# URL: http://www.sqlite.org/ +# Maintainer: NuTyX core +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=sqlite3 +version=3.7.5 +release=1 + +_amalgamationver=3070500 +_amalgamationver2=${_amalgamationver/00/} +pkgver=${_amalgamationver2//0/.} + +#source=(http://www.sqlite.org/sqlite-$version.tar.gz) +source=(http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz + http://www.sqlite.org/sqlite-tea-$_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-tea-$_amalgamationver + ./configure --prefix=/usr \ + --with-system-sqlite \ + --enable-static \ + --enable-threadsafe \ + --enable-readline \ + --enable-dynamic-extensions + + make + make DESTDIR=$PKG install + +# cd sqlite* +# CFLAGS="-O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1" \ +# ./configure --prefix=/usr \ +# --enable-threadsafe \ +# --enable-readline \ +# --enable-dynamic-extensions +# make +# make DESTDIR=$PKG install +# install -d $PKG/usr/share/man/man1 +# install -m 644 sqlite3.1 $PKG/usr/share/man/man1 +} + -- cgit v1.2.3-54-g00ecf