Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xlua-1.1-0.rockspec - github.com/torch/xlua.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7185acd24d837f75336c94461fa38d3799c6408f (plain)
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'
   }
}