From d39e1f39ebf42420ee30fcef2e699c8e55160d39 Mon Sep 17 00:00:00 2001 From: Jose V Beneyto Date: Mon, 3 May 2010 09:31:20 +0200 Subject: [PATCH] sqlite3: initial import (verified compilation) --- sqlite3/.footprint | 17 +++++++++++++++++ sqlite3/.md5sum | 1 + sqlite3/Pkgfile | 23 +++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 sqlite3/.footprint create mode 100644 sqlite3/.md5sum create mode 100644 sqlite3/Pkgfile diff --git a/sqlite3/.footprint b/sqlite3/.footprint new file mode 100644 index 0000000..5582ef9 --- /dev/null +++ b/sqlite3/.footprint @@ -0,0 +1,17 @@ +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/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/sqlite3.1.gz diff --git a/sqlite3/.md5sum b/sqlite3/.md5sum new file mode 100644 index 0000000..efc528e --- /dev/null +++ b/sqlite3/.md5sum @@ -0,0 +1 @@ +ed585bb3d4e5c643843ebb1e318644ce sqlite-amalgamation-3.6.23.1.tar.gz diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile new file mode 100644 index 0000000..8e01496 --- /dev/null +++ b/sqlite3/Pkgfile @@ -0,0 +1,23 @@ +# Description: SQL database engine +# URL: http://www.sqlite.org/ +# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de +# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org +# Depends on: ncurses readline + +name=sqlite3 +version=3.6.23.1 +release=1 + +source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz) + +build () { + cd sqlite-$version + + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man + + make + make DESTDIR=$PKG install +} -- 2.26.2