diff options
author | moteus <mimir@newmail.ru> | 2013-12-26 12:07:55 +0400 |
---|---|---|
committer | moteus <mimir@newmail.ru> | 2013-12-26 12:07:55 +0400 |
commit | 9cca63ebefd6dd0274ffc97eecda103739e14ec1 (patch) | |
tree | 7080b85e87496ce3b81a407d3f02d6ca22389ee2 /rockspecs | |
parent | 0564761012b65beae08aa9844dac93f637cfaf73 (diff) | |
download | lua-llthreads2-9cca63ebefd6dd0274ffc97eecda103739e14ec1.tar.gz lua-llthreads2-9cca63ebefd6dd0274ffc97eecda103739e14ec1.tar.bz2 lua-llthreads2-9cca63ebefd6dd0274ffc97eecda103739e14ec1.zip |
Add. rockspec file.
Diffstat (limited to 'rockspecs')
-rw-r--r-- | rockspecs/lua-llthreads2-scm-0.rockspec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/rockspecs/lua-llthreads2-scm-0.rockspec b/rockspecs/lua-llthreads2-scm-0.rockspec new file mode 100644 index 0000000..e543dc3 --- /dev/null +++ b/rockspecs/lua-llthreads2-scm-0.rockspec | |||
@@ -0,0 +1,38 @@ | |||
1 | package = "lua-llthreads2" | ||
2 | version = "scm-0" | ||
3 | source = { | ||
4 | url = "https://github.com/moteus/lua-llthreads2/archive/master.zip", | ||
5 | dir = "lua-llthreads2-master", | ||
6 | } | ||
7 | description = { | ||
8 | summary = "Low-Level threads for Lua", | ||
9 | homepage = "http://github.com/moteus/lua-llthreads2", | ||
10 | license = "MIT/X11", | ||
11 | } | ||
12 | dependencies = { | ||
13 | "lua >= 5.1, < 5.3", | ||
14 | } | ||
15 | build = { | ||
16 | type = "builtin", | ||
17 | platforms = { | ||
18 | unix = { | ||
19 | modules = { | ||
20 | llthreads = { | ||
21 | libraries = {"pthread"}, | ||
22 | } | ||
23 | } | ||
24 | }, | ||
25 | windows = { | ||
26 | modules = { | ||
27 | llthreads = { | ||
28 | libraries = {"kernel32"}, | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | }, | ||
33 | modules = { | ||
34 | llthreads = { | ||
35 | sources = { "src/l52util.c", "src/llthread.c" }, | ||
36 | } | ||
37 | } | ||
38 | } \ No newline at end of file | ||