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

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

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

description = {
   summary = "Paths manipulations",
   detailed = [[
   ]],
   homepage = "https://github.com/torch/paths",
   license = "BSD"
}

dependencies = {
   "lua >= 5.1",
}

build = {
   type = "command",
   build_command = [[
cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DLUALIB=$(LUALIB) -DLUA_INCDIR="$(LUA_INCDIR)" -DLUA_LIBDIR="$(LUA_LIBDIR)" -DLUADIR="$(LUADIR)" -DLIBDIR="$(LIBDIR)" -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)
]],
   install_command = "cd build && $(MAKE) install"
}