Skip to content

Commit a5a0cf0

Browse files
committed
new rockspec
1 parent be54d0c commit a5a0cf0

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

xlua-1.1-0.rockspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "xlua"
2+
version = "1.1-0"
3+
4+
source = {
5+
url = "git://github.com/torch/xlua",
6+
}
7+
8+
description = {
9+
summary = "Extra Lua functions.",
10+
detailed = [[
11+
Lua is pretty compact in terms of built-in functionalities:
12+
this package extends the table and string libraries,
13+
and provide other general purpose tools (progress bar, ...).
14+
]],
15+
homepage = "https://github.com/torch/xlua",
16+
license = "BSD"
17+
}
18+
19+
dependencies = {
20+
"torch >= 7.0",
21+
"sys >= 1.0"
22+
}
23+
24+
build = {
25+
type = "builtin",
26+
modules = {
27+
['xlua.init'] = 'init.lua',
28+
['xlua.OptionParser'] = 'OptionParser.lua',
29+
['xlua.Profiler'] = 'Profiler.lua'
30+
}
31+
}

0 commit comments

Comments
 (0)