Rename rockspec file

This commit is contained in:
Alexey Melnichuk 2014-09-10 12:16:14 +05:00
parent f48e72fe79
commit 980af35793

View File

@ -1,20 +1,20 @@
package = "lcurl" package = "Lua-cURL"
version = "scm-0" version = "scm-0"
source = { source = {
url = "https://github.com/moteus/lua-lcurl/archive/master.zip", url = "https://github.com/Lua-cURL/Lua-cURLv3/archive/master.zip",
dir = "lua-lcurl-master", dir = "Lua-cURLv3-master",
} }
description = { description = {
summary = "Lua binding to libcurl", summary = "Lua binding to libcurl",
detailed = [[ detailed = [[
]], ]],
homepage = "https://github.com/moteus/lua-lcurl", homepage = "https://github.com/Lua-cURL",
license = "MIT/X11" license = "MIT/X11"
} }
dependencies = { dependencies = {
"lua >= 5.1" "lua >= 5.1, < 5.3"
} }
external_dependencies = { external_dependencies = {
@ -57,6 +57,7 @@ build = {
}, },
modules = { modules = {
cURL = "src/lua/cURL.lua",
lcurl = { lcurl = {
sources = { sources = {
"src/l52util.c", "src/lceasy.c", "src/lcerror.c", "src/l52util.c", "src/lceasy.c", "src/lcerror.c",
@ -66,6 +67,5 @@ build = {
incdirs = { "$(CURL_INCDIR)" }, incdirs = { "$(CURL_INCDIR)" },
libdirs = { "$(CURL_LIBDIR)" } libdirs = { "$(CURL_LIBDIR)" }
}, },
["lcurl.cURL"] = "src/lua/cURL.lua",
} }
} }