diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-01-14 22:38:05 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-01-14 22:38:05 +0100 |
commit | 5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c (patch) | |
tree | aecef98a1e3fcb8ca56cfcfaa6489a2968722731 /extra/sqlite3/Pkgfile | |
parent | c852397fc8d324f1f97c1117c80b3f74a12c37bc (diff) | |
download | nutyx-extra-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.gz nutyx-extra-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.bz2 nutyx-extra-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.xz nutyx-extra-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.zip |
sqlite3 ds base
Diffstat (limited to 'extra/sqlite3/Pkgfile')
-rw-r--r-- | extra/sqlite3/Pkgfile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/extra/sqlite3/Pkgfile b/extra/sqlite3/Pkgfile deleted file mode 100644 index 31dc4559a..000000000 --- a/extra/sqlite3/Pkgfile +++ /dev/null @@ -1,23 +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: tcl - -name=sqlite3 -version=3.7.3 -release=1 -source=(http://www.sqlite.org/sqlite-$version.tar.gz) - -build() { - export LTLINK_EXTRAS="-ldl" - export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" - cd sqlite-$version - ./configure --prefix=/usr \ - --enable-threadsafe - make - make DESTDIR=$PKG install - install -d $PKG/usr/share/man/man1 - install -m 644 sqlite3.1 $PKG/usr/share/man/man1 -} - |