-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluaxmlrpc-1.2.2-1.rockspec
39 lines (37 loc) · 1.04 KB
/
luaxmlrpc-1.2.2-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
31
32
33
34
35
36
37
38
39
-- This file was automatically generated for the LuaDist project.
package = "luaxmlrpc"
version = "1.2.2-1"
-- LuaDist source
source = {
tag = "1.2.2-1",
url = "git://github.com/LuaDist2/luaxmlrpc.git"
}
-- Original source
-- source = {
-- url = "git://github.com/timn/lua-xmlrpc",
-- tag = "1.2.2",
-- }
description = {
summary = "Allows to access and provide XML-RPC services",
detailed = [[
This package provides code to access XML-RPC services over HTTP. It also
provides code to provide these services, e.g. by using Xavante.
License: http://keplerproject.github.io/lua-xmlrpc/license.html
]],
homepage = "http://keplerproject.github.io/lua-xmlrpc",
license = "GPL-compatible"
}
dependencies = {
"lua >= 5.1, < 5.3",
"luaexpat",
"luasocket"
}
build = {
type = "builtin",
modules = {
["xmlrpc.init"] = "src/init.lua",
["xmlrpc.http"] = "src/http.lua",
["xmlrpc.server"] = "src/server.lua"
},
copy_directories = { "doc", "examples", "tests" }
}