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 | |
parent | c852397fc8d324f1f97c1117c80b3f74a12c37bc (diff) | |
download | nutyx-pakxe-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.gz nutyx-pakxe-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.bz2 nutyx-pakxe-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.tar.xz nutyx-pakxe-5997edbeb712170c8e7e69f0f0469d7a8c6b9c7c.zip |
sqlite3 ds base
Diffstat (limited to 'extra')
-rw-r--r-- | extra/sqlite3/.footprint | 22 | ||||
-rw-r--r-- | extra/sqlite3/.md5sum | 1 | ||||
-rw-r--r-- | extra/sqlite3/Pkgfile | 23 |
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 -} - |