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

sys-1.0-0.rockspec - github.com/torch/sys.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 954e5ad42e55309382d513c2ff7ef480063e914e (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 = "sys"
version = "1.0-0"

source = {
   url = "git://github.com/clementfarabet/lua---sys",
   tag = "1.0-0"
}

description = {
   summary = "A system library for Torch",
   detailed = [[
Provides system functionalities for Torch.
   ]],
   homepage = "https://github.com/clementfarabet/lua---sys",
   license = "BSD"
}

dependencies = {
   "torch >= 7.0",
}

build = {
   type = "cmake",
   variables = {
      LUAROCKS_PREFIX = "$(PREFIX)"
   }
}