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
|
package = "xlua"
version = "1.1-0"
source = {
url = "git://github.com/torch/xlua",
}
description = {
summary = "Extra Lua functions.",
detailed = [[
Lua is pretty compact in terms of built-in functionalities:
this package extends the table and string libraries,
and provide other general purpose tools (progress bar, ...).
]],
homepage = "https://github.com/torch/xlua",
license = "BSD"
}
dependencies = {
"torch >= 7.0",
"sys >= 1.0"
}
build = {
type = "builtin",
modules = {
['xlua.init'] = 'init.lua',
['xlua.OptionParser'] = 'OptionParser.lua',
['xlua.Profiler'] = 'Profiler.lua'
}
}
|