From ce58a1081b44f3f28f65372def5b43b86492ca4f Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Sat, 2 Jun 2012 18:17:29 +0000 Subject: main/lua-dbi: moved from testing --- main/lua-dbi/APKBUILD | 66 +++++++++++++++++++++++++++++++++++ main/lua-dbi/lua-dbi-postgresql.patch | 9 +++++ 2 files changed, 75 insertions(+) create mode 100644 main/lua-dbi/APKBUILD create mode 100644 main/lua-dbi/lua-dbi-postgresql.patch (limited to 'main/lua-dbi') diff --git a/main/lua-dbi/APKBUILD b/main/lua-dbi/APKBUILD new file mode 100644 index 0000000000..4455308b44 --- /dev/null +++ b/main/lua-dbi/APKBUILD @@ -0,0 +1,66 @@ +# Contributor: Leonardo Arena +# Maintainer: +pkgname=lua-dbi +_realname=luadbi +pkgver=0.5 +pkgrel=1 +pkgdesc="A database interface library for Lua" +url="http://code.google.com/p/luadbi" +arch="all" +license="GPL" +depends="" +makedepends="lua-dev mysql-dev postgresql-dev sqlite-dev" +install="" +subpackages="$pkgname-mysql $pkgname-postgresql $pkgname-sqlite" +source="http://luadbi.googlecode.com/files/$_realname.$pkgver.tar.gz + lua-dbi-postgresql.patch" + +_builddir="$srcdir" + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + # install -d "$pkgdir"/usr/lib/lua/5.1 + install -D -m755 "$srcdir"/DBI.lua "$pkgdir"/usr/share/lua/5.1/DBI.lua || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +_mv_backend() { + install -d "$subpkgdir"/usr/lib/lua/5.1 + mv "$srcdir"/dbd${1}.so "$subpkgdir"/usr/lib/lua/5.1 +} + +sqlite() { + pkgdesc="lua-dbi SQLite backend" + depends="lua-dbi sqlite" + _mv_backend sqlite3 +} + +mysql() { + pkgdesc="lua-dbi MySQL backend" + depends="lua-dbi mysql" + _mv_backend mysql +} + +postgresql() { + pkgdesc="lua-dbi PostgreSQL backend" + depends="lua-dbi postgresql" + _mv_backend postgresql +} + +md5sums="ede2b003aadddc151aac87050c3d926e luadbi.0.5.tar.gz +67fa36ca81d2d7003be5a3f86d35c79c lua-dbi-postgresql.patch" diff --git a/main/lua-dbi/lua-dbi-postgresql.patch b/main/lua-dbi/lua-dbi-postgresql.patch new file mode 100644 index 0000000000..2d2ba272da --- /dev/null +++ b/main/lua-dbi/lua-dbi-postgresql.patch @@ -0,0 +1,9 @@ +--- a/dbd/postgresql/dbd_postgresql.h.old 2010-05-01 06:25:12.000000000 +0200 ++++ b/dbd/postgresql/dbd_postgresql.h 2011-04-19 16:59:53.364944209 +0200 +@@ -1,5 +1,5 @@ + #include +-#include ++#include + #include + + /* -- cgit v1.2.3