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

github.com/torch/xlua.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsoumith <soumith@fb.com>2015-12-11 01:56:50 +0300
committersoumith <soumith@fb.com>2015-12-11 01:56:50 +0300
commita5a0cf0b4f961b1faf5257627045af1d9d7506eb (patch)
tree81179b0db61ff58897b45b3dc47c475b724443dc
parentbe54d0cfc910845e7a7a674bff63dec487fc2d4c (diff)
new rockspec
-rw-r--r--xlua-1.1-0.rockspec31
1 files changed, 31 insertions, 0 deletions
diff --git a/xlua-1.1-0.rockspec b/xlua-1.1-0.rockspec
new file mode 100644
index 0000000..7185acd
--- /dev/null
+++ b/xlua-1.1-0.rockspec
@@ -0,0 +1,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'
+ }
+}