Add lua51-event luaunbound prosody-mod-s2s-auth-dane

This commit is contained in:
moparisthebest
2016-11-05 22:24:26 -04:00
parent e792135aad
commit 5e2a865a13
9 changed files with 159 additions and 0 deletions

20
src/lua51-event/.SRCINFO Normal file
View File

@@ -0,0 +1,20 @@
# Generated by mksrcinfo v8
# Thu Aug 4 18:14:40 UTC 2016
pkgbase = lua51-event
pkgdesc = libevent binding for Lua
pkgver = 0.4.4
pkgrel = 1
url = https://github.com/harningt/luaevent
arch = i686
arch = x86_64
arch = armv6h
arch = armv7h
license = MIT
makedepends = lua51
makedepends = lua51-socket
depends = libevent>=1.4
source = luaevent-0.4.4.tar.gz::https://github.com/harningt/luaevent/archive/v0.4.4.tar.gz
sha256sums = 242c95b9cacd87201aa35ba618eb1cd0b0e2a7d1a8fc6734c0bc06dd742e2455
pkgname = lua51-event

6
src/lua51-event/.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
/pkg/
/src/
*.tar.gz
*.tar.xz

29
src/lua51-event/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Dwayne Bent <dbb@dbb.io>
# Contributor: Timothée Ravier <tim@siosm.fr>
pkgname=lua51-event
_pkgbase=luaevent
pkgver=0.4.4
pkgrel=1
pkgdesc="libevent binding for Lua"
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
url="https://github.com/harningt/luaevent"
license=('MIT')
makedepends=('lua51' 'lua51-socket')
depends=('libevent>=1.4')
source=(${_pkgbase}-${pkgver}.tar.gz::https://github.com/harningt/${_pkgbase}/archive/v${pkgver}.tar.gz)
sha256sums=('242c95b9cacd87201aa35ba618eb1cd0b0e2a7d1a8fc6734c0bc06dd742e2455')
build() {
cd ${_pkgbase}-${pkgver}
make LUA_INC_DIR=/usr/include/lua5.1
}
package() {
cd ${_pkgbase}-${pkgver}
make INSTALL_DIR_BIN='/usr/lib/lua/5.1' \
INSTALL_DIR_LUA='/usr/share/lua/5.1' \
DESTDIR="${pkgdir}" \
install
}