diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-12 20:48:52 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-12 20:48:52 +0200 |
commit | a3a370594c65f1f128bdeab96735014b22b1c479 (patch) | |
tree | 78b9a3712b2d95930c9b9689f0bb4144f9e2ed6f /extra/sqlite3/Pkgfile | |
parent | ffbe2bcfb032231b94e912db2b4cb5a3665161a5 (diff) | |
download | nutyx-extra-a3a370594c65f1f128bdeab96735014b22b1c479.tar.gz nutyx-extra-a3a370594c65f1f128bdeab96735014b22b1c479.tar.bz2 nutyx-extra-a3a370594c65f1f128bdeab96735014b22b1c479.tar.xz nutyx-extra-a3a370594c65f1f128bdeab96735014b22b1c479.zip |
Ajout de sqlite3#3.6.16-1
Diffstat (limited to 'extra/sqlite3/Pkgfile')
-rw-r--r-- | extra/sqlite3/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/sqlite3/Pkgfile b/extra/sqlite3/Pkgfile new file mode 100644 index 000000000..82e55ba5d --- /dev/null +++ b/extra/sqlite3/Pkgfile @@ -0,0 +1,22 @@ +# 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.6.14.2 +release=1 +source=(http://www.sqlite.org/sqlite-$version.tar.gz\ + http://www.sqlite.org/cvstrac/attach_get/433/build_fts_as_part_of_libsqlite.patch.txt) + +build() { + cd sqlite-$version + #patch -Np0 -i ../build_fts_as_part_of_libsqlite.patch.txt + ./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 +} |