summaryrefslogtreecommitdiff
path: root/community/luasec
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/luasec
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/luasec')
-rw-r--r--community/luasec/PKGBUILD49
1 files changed, 0 insertions, 49 deletions
diff --git a/community/luasec/PKGBUILD b/community/luasec/PKGBUILD
deleted file mode 100644
index ac93b46cb..000000000
--- a/community/luasec/PKGBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# $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: