diff options
author | Timo Teräs <timo.teras@iki.fi> | 2018-12-31 11:26:48 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-12-31 11:34:33 +0200 |
commit | 3e603cc81c48cf70c32bdf59cb18649f6e0eb44c (patch) | |
tree | 93423f5635e1fd2c77cd8cec4847b4e781fe6b4c /testing | |
parent | 906b4999c1d651323240598ad7fd46a65e037d7f (diff) | |
download | aports-3e603cc81c48cf70c32bdf59cb18649f6e0eb44c.tar.bz2 aports-3e603cc81c48cf70c32bdf59cb18649f6e0eb44c.tar.xz |
testing/lua-resty-hmac: new aport
HMAC functions for OpenResty
https://github.com/jkeys089/lua-resty-hmac
Diffstat (limited to 'testing')
-rw-r--r-- | testing/lua-resty-hmac/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/lua-resty-hmac/APKBUILD b/testing/lua-resty-hmac/APKBUILD new file mode 100644 index 0000000000..b37a929a08 --- /dev/null +++ b/testing/lua-resty-hmac/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Timo Teräs <timo.teras@iki.fi> +# Maintainer: Timo Teräs <timo.teras@iki.fi> +pkgname=lua-resty-hmac +pkgver=0.02.20180101 +_commitid=989f601acbe74dee71c1a48f3e140a427f2d03ae +pkgrel=0 +pkgdesc="HMAC functions for OpenResty" +url="https://github.com/jkeys089/lua-resty-hmac" +arch="noarch" +license="BSD" +depends="nginx-mod-http-lua lua-resty-string" +makedepends="" +checkdepends="perl-utils perl-test-nginx" +source="$pkgname-$pkgver.tar.gz::https://github.com/jkeys089/$pkgname/archive/$_commitid.tar.gz + " +builddir="$srcdir/$pkgname-$_commitid" + +package() { + cd "$builddir" + mkdir -p "$pkgdir"/usr/share/lua/common + make DESTDIR="$pkgdir" LUA_LIB_DIR="$pkgdir/usr/share/lua/common" install + rm "$pkgdir/usr/share/lua/common/resty/string.lua" +} + +check() { + cd "$builddir" + #make test LUA_LIB_DIR="$builddir/tmp" +} + +sha512sums="9647d14722f5870805fd10f1539ca4235de63689279c92ce6f8c0cb21c590034cb1e8dc7b7bc5f5b216a68eebae281c4b0c4055c936c045bdd0aed990889c0c6 lua-resty-hmac-0.02.20180101.tar.gz" |