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

github.com/torch/sys.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Farabet <clement.farabet@gmail.com>2012-11-23 03:59:15 +0400
committerClement Farabet <clement.farabet@gmail.com>2012-11-23 03:59:15 +0400
commit875927f11445c80927f14b14676fcff7c84dba9a (patch)
tree624644af4b5323f57245d32da926834d466b2b34 /sys-1.0-0.rockspec
parente89bc1873aaa85f0c60d1fce65d63d374b0e2b46 (diff)
Rockspec for luarocks support
Diffstat (limited to 'sys-1.0-0.rockspec')
-rw-r--r--sys-1.0-0.rockspec26
1 files changed, 26 insertions, 0 deletions
diff --git a/sys-1.0-0.rockspec b/sys-1.0-0.rockspec
new file mode 100644
index 0000000..d6224ba
--- /dev/null
+++ b/sys-1.0-0.rockspec
@@ -0,0 +1,26 @@
+package = "sys"
+version = "1.0-0"
+
+source = {
+ url = "https://github.com/clementfarabet/lua---sys"
+}
+
+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)"
+ }
+}