blob: ca97ac75778e321b6247bbf9661c0a3d700dceb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Contributor: Leonardo Arena <rnarld@alpinelinux.org>
# Maintainer:
pkgname=lua-dbi
_realname=luadbi
pkgver=0.5
pkgrel=2
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"
|