# $Id: PKGBUILD 66219 2012-02-23 03:33:12Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Dwayne Bent # Contributor: Paul-Sebastian Manole pkgname=luasec pkgver=0.4 pkgrel=3 pkgdesc="Lua bindings for OpenSSL library to provide TLS/SSL communication." arch=('i686' 'x86_64') url="http://luasec.luaforge.net/" license=('MIT') depends=('openssl>=0.9.7' 'lua>=5.1' 'luasocket>=2.0.2') source=("http://www.inf.puc-rio.br/~brunoos/luasec/download/$pkgname-$pkgver.tar.gz" 'luasec.patch') md5sums=('712158d60207bdbb6215fc7e07d8db24' '25e48c1115225d9884cdb7f5ca4949a9') build() { install -d "$pkgdir/usr/share/lua/5.1" install -d "$pkgdir/usr/lib/lua/5.1" install -d "$pkgdir/usr/share/licenses/$pkgname" cd "$srcdir/$pkgname-$pkgver" patch -p1 Makefile "$srcdir/luasec.patch" make linux make DESTDIR=$pkgdir install install -m644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }