summaryrefslogtreecommitdiff
path: root/community/luasec
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/luasec
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/luasec')
-rw-r--r--community/luasec/PKGBUILD49
1 files changed, 49 insertions, 0 deletions
diff --git a/community/luasec/PKGBUILD b/community/luasec/PKGBUILD
new file mode 100644
index 000000000..ac93b46cb
--- /dev/null
+++ b/community/luasec/PKGBUILD
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 81569 2012-12-24 14:48:29Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Dwayne Bent <dbb.1@liqd.org>
+# Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com>
+
+pkgbase=luasec
+pkgname=(lua51-sec)
+pkgver=0.4.1
+pkgrel=4
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='http://luasec.luaforge.net/'
+license=('MIT')
+#makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket')
+makedepends=('openssl' 'lua51' 'lua51-socket')
+source=("http://www.inf.puc-rio.br/~brunoos/luasec/download/luasec-$pkgver.tar.gz")
+md5sums=('b8a5fde3b3fdb6174f54cd51d7f53e12')
+
+build() {
+ cp -a luasec-$pkgver luasec-$pkgver-51
+ msg2 'Building with lua 5.2'
+ cd luasec-$pkgver
+ make linux
+ msg2 'Building with lua 5.1'
+ cd ../luasec-$pkgver-51
+ make INCDIR=-I/usr/include/lua5.1 linux
+}
+
+#package_lua-sec() {
+# depends=('openssl' 'lua' 'lua-socket')
+#
+# install -dm755 "$pkgdir/usr/lib/lua/5.2"
+# cd luasec-$pkgver
+# make LUACPATH="$pkgdir/usr/lib/lua/5.2" LUAPATH="$pkgdir/usr/share/lua/5.2" install
+# install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+#}
+
+package_lua51-sec() {
+ depends=('openssl' 'lua51' 'lua51-socket')
+ conflicts=('luasec')
+ replaces=('luasec')
+
+ install -dm755 "$pkgdir/usr/lib/lua/5.1"
+ cd luasec-$pkgver-51
+ make LUACPATH="$pkgdir/usr/lib/lua/5.1" LUAPATH="$pkgdir/usr/share/lua/5.1" install
+ install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et: