summaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authormoteus <mimir@newmail.ru>2013-12-26 12:07:55 +0400
committermoteus <mimir@newmail.ru>2013-12-26 12:07:55 +0400
commit9cca63ebefd6dd0274ffc97eecda103739e14ec1 (patch)
tree7080b85e87496ce3b81a407d3f02d6ca22389ee2 /rockspecs
parent0564761012b65beae08aa9844dac93f637cfaf73 (diff)
downloadlua-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.rockspec38
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 @@
1package = "lua-llthreads2"
2version = "scm-0"
3source = {
4 url = "https://github.com/moteus/lua-llthreads2/archive/master.zip",
5 dir = "lua-llthreads2-master",
6}
7description = {
8 summary = "Low-Level threads for Lua",
9 homepage = "http://github.com/moteus/lua-llthreads2",
10 license = "MIT/X11",
11}
12dependencies = {
13 "lua >= 5.1, < 5.3",
14}
15build = {
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