-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlua-resty-woothee-1.12.0-1.rockspec
30 lines (30 loc) · 1.15 KB
/
lua-resty-woothee-1.12.0-1.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
package = "lua-resty-woothee"
version = "1.12.0-1"
source = {
url = "git://github.com/woothee/lua-resty-woothee",
tag = "v1.12.0-1"
}
description = {
summary = "Woothee(UA Parser) Lua-Openresty implementation",
detailed = [[The Lua-Openresty implementation of Project Woothee, which is multi-language user-agent strings parsers.]],
homepage = "https://github.com/toritori0318/lua-resty-woothee",
license = "Apache License 2.0",
maintainer = "toritori0318"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["resty.woothee"] = "lib/resty/woothee.lua",
["resty.woothee.appliance"] = "lib/resty/woothee/appliance.lua",
["resty.woothee.browser"] = "lib/resty/woothee/browser.lua",
["resty.woothee.crawler"] = "lib/resty/woothee/crawler.lua",
["resty.woothee.dataset"] = "lib/resty/woothee/dataset.lua",
["resty.woothee.misc"] = "lib/resty/woothee/misc.lua",
["resty.woothee.mobile_phone"] = "lib/resty/woothee/mobile_phone.lua",
["resty.woothee.os"] = "lib/resty/woothee/os.lua",
["resty.woothee.util"] = "lib/resty/woothee/util.lua"
}
}