summaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/sqlite3/.footprint22
-rw-r--r--extra/sqlite3/.md5sum1
-rw-r--r--extra/sqlite3/Pkgfile23
3 files changed, 0 insertions, 46 deletions
diff --git a/extra/sqlite3/.footprint b/extra/sqlite3/.footprint
deleted file mode 100644
index 4b26ac576..000000000
--- a/extra/sqlite3/.footprint
+++ /dev/null
@@ -1,22 +0,0 @@
-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
deleted file mode 100644
index a3301bfe8..000000000
--- a/extra/sqlite3/.md5sum
+++ /dev/null
@@ -1 +0,0 @@
-5437978aae90350cf984993091e0d695 sqlite-3.7.3.tar.gz
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
-}
-