Prepare 1.1 release.

pull/15/merge
Robert G. Jakabosky 15 years ago
parent c7e5f0c93f
commit ce2a44c408

@ -0,0 +1,36 @@
package = "lua-zmq"
version = "1.1-1"
source = {
url = "git://github.com/Neopallium/lua-zmq.git",
branch = "v1.1",
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1",
}
external_dependencies = {
ZEROMQ = {
header = "zmq.h",
library = "zmq",
}
}
build = {
type = "builtin",
modules = {
zmq = {
sources = {"src/pre_generated-zmq.nobj.c"},
incdirs = "$(ZEROMQ_INCDIR)",
libdirs = "$(ZEROMQ_LIBDIR)",
libraries = {"zmq"},
},
},
install = {
lua = {
['zmq.poller'] = "src/poller.lua",
}
}
}

@ -0,0 +1,23 @@
package = "lua-zmq-threads"
version = "1.1-1"
source = {
url = "git://github.com/Neopallium/lua-zmq.git",
branch = "v1.1",
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11"
}
dependencies = {
"lua-zmq",
"lua-llthreads",
}
build = {
type = "none",
install = {
lua = {
['zmq.threads'] = "src/threads.lua",
}
}
}
Loading…
Cancel
Save