File: luasoap-https-1.1-1.rockspec

package info (click to toggle)
lua-soap 3.0%2Bgit91419a7-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 184 kB
  • sloc: makefile: 22
file content (28 lines) | stat: -rwxr-xr-x 623 bytes parent folder | download | duplicates (4)
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
package = "luasoap-https"
version = "1.1-1"

source = {
   url="http://luasoap.luaforge.net/frs/download.php/??/luasoap-https-1.1-1.tar.gz",
}

description = {
   summary = "Support for SOAP over HTTPS",
   detailed = [[LuaSOAP provides a very simple API that convert Lua tables to and from XML documents.
This module provides a way to use SOAP over HTTPS.]],
   homepage = "http://luasoap.luaforge.net/",
   license = "MIT/X11",
}

dependencies = {
   "lua >= 5.1",
   "luasoap >= 1.1-1",
   "luasec >= 0.4-1",
}

build = {
   type = "builtin",
   modules = {
      ["soap.client.https"] = "src/client/https.lua",
   }
}