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

env-scm-1.rockspec - github.com/torch/env.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 951345fb0c6395b94aa5eb71a1315ae215a23d7c (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
package = "env"
version = "scm-1"

source = {
   url = "git://github.com/torch/env.git",
}

description = {
   summary = "Environment setup for Torch",
   detailed = [[
Adds pretty printing and additional path handling to luajit
   ]],
   homepage = "https://github.com/torch/env",
   license = "BSD"
}

dependencies = {
   "torch >= 7.0",
   "dok"
}

build = {
   type = "builtin",
   modules = {
      ['env.init'] = 'init.lua',
   }
}