summaryrefslogtreecommitdiff
path: root/community/lib32-sqlite/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lib32-sqlite/PKGBUILD')
-rw-r--r--community/lib32-sqlite/PKGBUILD56
1 files changed, 56 insertions, 0 deletions
diff --git a/community/lib32-sqlite/PKGBUILD b/community/lib32-sqlite/PKGBUILD
new file mode 100644
index 000000000..b14b6c738
--- /dev/null
+++ b/community/lib32-sqlite/PKGBUILD
@@ -0,0 +1,56 @@
+# $Id: PKGBUILD 86647 2013-03-20 22:06:02Z lcarlier $
+# Maintainer: Biru Ionut <ionut@archlinux.ro>
+# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi>
+# Contributor: Kaos < gianlucaatlas dot gmail dot com >
+
+_pkgbasename=sqlite
+pkgname=lib32-sqlite
+_amalgamationver=3071600
+#_docver=${_amalgamationver}
+_docver=3071600
+pkgver=3.7.16
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine (32-bit)"
+arch=('x86_64')
+license=('custom')
+url="http://www.sqlite.org/"
+depends=(lib32-glibc $_pkgbasename)
+makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
+source=(http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz)
+options=(!libtool)
+md5sums=('919aedd0c84e1d8fb07129251dbe05bf')
+provides=("lib32-sqlite3=$pkgver")
+replaces=("lib32-sqlite3")
+conflicts=("lib32-sqlite3")
+
+build() {
+ cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+ export CC="gcc -m32"
+ export CXX="g++ -m32"
+ export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+ export LTLINK_EXTRAS="-ldl"
+ export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
+
+ ./configure --prefix=/usr --libdir=/usr/lib32 \
+ --enable-threadsafe \
+ --disable-static
+
+ # rpath removal
+ sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
+ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+
+ make
+}
+
+
+package() {
+ cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+ make DESTDIR=${pkgdir} install
+
+ rm -rf "${pkgdir}"/usr/{include,share,bin}
+ mkdir -p "$pkgdir/usr/share/licenses"
+ ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}