forked from jirutka/ngx-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngx-oauth-dev-0.rockspec
46 lines (41 loc) · 1.16 KB
/
ngx-oauth-dev-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-- vim: set ft=lua:
package = 'ngx-oauth'
version = 'dev-0'
source = {
url = 'git://github.com/jirutka/ngx-oauth.git',
branch = 'master'
}
description = {
summary = 'OAuth 2.0 proxy for nginx',
homepage = 'https://github.com/jirutka/ngx-oauth',
maintainer = 'Jakub Jirutka <[email protected]>',
license = 'MIT'
}
dependencies = {
'lua >= 5.1',
'lua-cjson ~> 2', -- or luajson
'lua-resty-http ~> 0.06',
'luaossl'
}
build = {
type = 'builtin',
modules = {
['ngx-oauth.config'] = 'lib/ngx-oauth/config.lua',
['ngx-oauth.Cookies'] = 'lib/ngx-oauth/Cookies.lua',
['ngx-oauth.crypto'] = 'lib/ngx-oauth/crypto.lua',
['ngx-oauth.either'] = 'lib/ngx-oauth/either.lua',
['ngx-oauth.http_client'] = 'lib/ngx-oauth/http_client.lua',
['ngx-oauth.nginx'] = 'lib/ngx-oauth/nginx.lua',
['ngx-oauth.oauth2'] = 'lib/ngx-oauth/oauth2.lua',
['ngx-oauth.util'] = 'lib/ngx-oauth/util.lua'
},
install = {
lua = {
'lib/ngx-oauth-login.lua',
'lib/ngx-oauth-logout.lua',
'lib/ngx-oauth-proxy.lua',
'lib/ngx-oauth-redirect-handler.lua'
}
},
copy_directories = { 'spec' }
}