Skip to content

Commit

Permalink
Release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed May 4, 2016
1 parent 1c73fc1 commit 7a5176c
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 1 deletion.
74 changes: 74 additions & 0 deletions rockspecs/lua-curl-0.3.4-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
package = "Lua-cURL"
version = "0.3.4-1"

source = {
url = "https://github.com/Lua-cURL/Lua-cURLv3/archive/v0.3.4.zip",
dir = "Lua-cURLv3-0.3.4",
}

description = {
summary = "Lua binding to libcurl",
detailed = [[
]],
homepage = "https://github.com/Lua-cURL",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1, < 5.4"
}

external_dependencies = {
platforms = {
windows = {
CURL = {
header = "curl/curl.h",
library = "libcurl",
}
};
unix = {
CURL = {
header = "curl/curl.h",
-- library = "curl",
}
};
}
}

build = {
copy_directories = {'doc', 'examples'},

type = "builtin",

platforms = {
windows = { modules = {
lcurl = {
libraries = {"libcurl", "ws2_32"},
}
}},
unix = { modules = {
lcurl = {
libraries = {"curl"},
}
}}
},

modules = {
["cURL" ] = "src/lua/cURL.lua",
["cURL.safe" ] = "src/lua/cURL/safe.lua",
["cURL.utils" ] = "src/lua/cURL/utils.lua",
["cURL.impl.cURL" ] = "src/lua/cURL/impl/cURL.lua",

lcurl = {
sources = {
"src/l52util.c", "src/lceasy.c", "src/lcerror.c",
"src/lchttppost.c", "src/lcurl.c", "src/lcutils.c",
"src/lcmulti.c", "src/lcshare.c",
},
incdirs = { "$(CURL_INCDIR)" },
libdirs = { "$(CURL_LIBDIR)" }
},
}
}


2 changes: 1 addition & 1 deletion src/lua/cURL/impl/cURL.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

local module_info = {
_NAME = "Lua-cURL";
_VERSION = "0.3.4-dev";
_VERSION = "0.3.4";
_LICENSE = "MIT";
_COPYRIGHT = "Copyright (c) 2014-2016 Alexey Melnichuk";
}
Expand Down

0 comments on commit 7a5176c

Please sign in to comment.