CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
sqlite3: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Mon, 3 May 2010 07:31:20 +0000 (09:31 +0200)
committerJose V Beneyto <sepen@crux.nu>
Mon, 3 May 2010 07:31:20 +0000 (09:31 +0200)
sqlite3/.footprint [new file with mode: 0644]
sqlite3/.md5sum [new file with mode: 0644]
sqlite3/Pkgfile [new file with mode: 0644]

diff --git a/sqlite3/.footprint b/sqlite3/.footprint
new file mode 100644 (file)
index 0000000..5582ef9
--- /dev/null
@@ -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 (file)
index 0000000..efc528e
--- /dev/null
@@ -0,0 +1 @@
+ed585bb3d4e5c643843ebb1e318644ce  sqlite-amalgamation-3.6.23.1.tar.gz
diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile
new file mode 100644 (file)
index 0000000..8e01496
--- /dev/null
@@ -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
+}