diff options
author | tnut <tnut at nutyx dot com> | 2012-01-08 12:15:45 +0100 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-01-08 12:15:45 +0100 |
commit | 3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch) | |
tree | 819b14ab0377fe2054fe59866669d904e9e0b4b5 /base/sqlite3/Pkgfile | |
parent | c9972ec7f32bf9d37388e853fe9bf633e242d05a (diff) | |
download | nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2 nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip |
split de git pakxe et NuTyX-extra
Diffstat (limited to 'base/sqlite3/Pkgfile')
-rw-r--r-- | base/sqlite3/Pkgfile | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/base/sqlite3/Pkgfile b/base/sqlite3/Pkgfile deleted file mode 100644 index 483cfc067..000000000 --- a/base/sqlite3/Pkgfile +++ /dev/null @@ -1,55 +0,0 @@ -# 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 -} - |