summaryrefslogtreecommitdiffstats
path: root/extra/sqlite3
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-12 20:48:52 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-12 20:48:52 +0200
commita3a370594c65f1f128bdeab96735014b22b1c479 (patch)
tree78b9a3712b2d95930c9b9689f0bb4144f9e2ed6f /extra/sqlite3
parentffbe2bcfb032231b94e912db2b4cb5a3665161a5 (diff)
downloadnutyx-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')
-rw-r--r--extra/sqlite3/.footprint22
-rw-r--r--extra/sqlite3/.md5sum2
-rw-r--r--extra/sqlite3/Pkgfile22
3 files changed, 46 insertions, 0 deletions
diff --git a/extra/sqlite3/.footprint b/extra/sqlite3/.footprint
new file mode 100644
index 000000000..4b26ac576
--- /dev/null
+++ b/extra/sqlite3/.footprint
@@ -0,0 +1,22 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/sqlite3
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/sqlite3.h
+-rw-r--r-- root/root usr/include/sqlite3ext.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libsqlite3.a
+-rwxr-xr-x root/root usr/lib/libsqlite3.la
+lrwxrwxrwx root/root usr/lib/libsqlite3.so -> libsqlite3.so.0.8.6
+lrwxrwxrwx root/root usr/lib/libsqlite3.so.0 -> libsqlite3.so.0.8.6
+-rwxr-xr-x root/root usr/lib/libsqlite3.so.0.8.6
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/sqlite3.pc
+drwxr-xr-x root/root usr/lib/tcl8.5/
+drwxr-xr-x root/root usr/lib/tcl8.5/sqlite3/
+-rwxr-xr-x root/root usr/lib/tcl8.5/sqlite3/libtclsqlite3.so
+-rw-r--r-- root/root usr/lib/tcl8.5/sqlite3/pkgIndex.tcl
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/sqlite3.1.gz
diff --git a/extra/sqlite3/.md5sum b/extra/sqlite3/.md5sum
new file mode 100644
index 000000000..68f371316
--- /dev/null
+++ b/extra/sqlite3/.md5sum
@@ -0,0 +1,2 @@
+1a24b7334d4d338deaa6552f49106a41 build_fts_as_part_of_libsqlite.patch.txt
+4c074691b48cd45854899ae4fece6301 sqlite-3.6.14.2.tar.gz
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
+}