-
Notifications
You must be signed in to change notification settings - Fork 0
/
luacurl-1.2.1-1.rockspec
44 lines (43 loc) · 1.09 KB
/
luacurl-1.2.1-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
40
41
42
43
44
-- This file was automatically generated for the LuaDist project.
package = "LuaCURL"
version = "1.2.1-1"
-- LuaDist source
source = {
-- tag = "1.2.1-1",
url = "git://github.com/f84anton/luacurl.git"
}
-- Original source
-- source = {
-- url = "http://luaforge.net/frs/download.php/3342/luacurl-1.2.1.zip",
-- md5 = "4c83710a0fc5ca52818e5ec0101c4395"
-- }
description = {
summary = "Lua module binding CURL",
detailed = [[
LuaCURL is Lua 5.x compatible module providing Internet browsing
capabilities based on the CURL library. The module interface
follows strictly the CURl architecture and is very easy to use
if the programmer has already experience with CURL.
]],
homepage = "http://luaforge.net/projects/luacurl/",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1"
}
external_dependencies = {
CURL = {
header = "curl/curl.h"
}
}
build = {
type = "builtin",
modules = {
luacurl = {
sources = { "luacurl.c" },
libraries = { "curl" },
incdirs = { "$(CURL_INCDIR)" },
libdirs = { "$(CURL_LIBDIR)" }
}
}
}