blob: f4564019538c24a3f156a4c43ea8207a1b99f966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=lua-resty-openidc
pkgver=1.7.0
pkgrel=0
pkgdesc="OpenID Connect library for the nginx lua module"
url="https://github.com/zmartzone/$pkgname"
arch="noarch"
license="BSD2"
source="$pkgname-$pkgver.tar.gz::https://github.com/zmartzone/$pkgname/archive/v$pkgver.tar.gz"
depends="lua-cjson lua-resty-string lua-resty-http lua-resty-session lua-resty-jwt"
builddir="$srcdir/$pkgname-$pkgver"
options="!check"
package() {
cd "$builddir"
mkdir -p "$pkgdir/usr/share/lua/common"
cp -r ./lib/resty "$pkgdir/usr/share/lua/common"
}
sha512sums="c26e530c5f1fcf8d4939820b1541e70444efb63dc60e3834231812d86c8f7c06c06ad1b12b79b94d27338b93f32e5a1acd78158d9aed4b9a4f8f133fc6a17625 lua-resty-openidc-1.7.0.tar.gz"
|