parent
9588c05348
commit
d7812eabad
@ -0,0 +1,36 @@
|
|||||||
|
package = "lua-zmq"
|
||||||
|
version = "1.2-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/Neopallium/lua-zmq.git",
|
||||||
|
branch = "v1.2",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
|
||||||
|
homepage = "http://github.com/Neopallium/lua-zmq",
|
||||||
|
license = "MIT/X11",
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1, < 5.5",
|
||||||
|
}
|
||||||
|
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,51 @@
|
|||||||
|
package = "lua-zmq"
|
||||||
|
version = "scm-2"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/Neopallium/lua-zmq.git",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
|
||||||
|
homepage = "http://github.com/Neopallium/lua-zmq",
|
||||||
|
license = "MIT/X11",
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1, < 5.5",
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
platforms = {
|
||||||
|
windows = {
|
||||||
|
ZEROMQ = {
|
||||||
|
library = "libzmq",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ZEROMQ = {
|
||||||
|
header = "zmq.h",
|
||||||
|
library = "zmq",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
platforms = {
|
||||||
|
windows = {
|
||||||
|
modules = {
|
||||||
|
zmq = {
|
||||||
|
libraries = {"libzmq"},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
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.2-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/Neopallium/lua-zmq.git",
|
||||||
|
branch = "v1.2",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
|
||||||
|
homepage = "http://github.com/Neopallium/lua-zmq",
|
||||||
|
license = "MIT/X11"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua-zmq >= 1.2-1",
|
||||||
|
"lua-llthreads >= 1.3-1",
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "none",
|
||||||
|
install = {
|
||||||
|
lua = {
|
||||||
|
['zmq.threads'] = "src/threads.lua",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue