-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathljob-0.1-01.rockspec
60 lines (52 loc) · 919 Bytes
/
ljob-0.1-01.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
--
-- Lanes rockspec
--
-- Ref:
-- <http://luarocks.org/en/Rockspec_format>
--
package = "ljob"
version = "0.1-01"
source= {
url = "http://github.com"
}
description = {
summary= "Multiprocessing support for Luajit",
detailed= [[
ljob is a easy to use fork systemcall based parallel processing library.
]],
license= "MIT/X11",
homepage="https://github.com/cstraehl/ljob",
maintainer="Christoph Straehle <[email protected]>"
}
supported_platforms= {
"macosx", -- TBD: not tested
"linux",
"freebsd", -- TBD: not tested
}
dependencies= {
"lua >= 5.1", -- builds with either 5.1 and 5.2
}
build = {
type = "builtin",
platforms =
{
linux =
{
modules =
{
["ljob.marshal"] =
{
},
}
}
},
modules =
{
["ljob.init"] = "init.lua",
["ljob.marshal"] =
{
sources = { "lmarshal.c"},
incdirs = { },
}
}
}