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

github.com/torch/dok.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Collobert <ronan@collobert.com>2014-02-13 21:21:57 +0400
committerRonan Collobert <ronan@collobert.com>2014-02-13 21:21:57 +0400
commitd4b6a8fad6494475e8604047bedeaec6bf91c946 (patch)
treecf25908f40cba78b31315525b7850ef3acbefde0
parente01aafb678882ac3f4cf362e7aa5495651a060dd (diff)
added rockspec
-rw-r--r--rocks/dok-scm-1.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/rocks/dok-scm-1.rockspec b/rocks/dok-scm-1.rockspec
new file mode 100644
index 0000000..79e68c3
--- /dev/null
+++ b/rocks/dok-scm-1.rockspec
@@ -0,0 +1,32 @@
+package = "dok"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/torch/dok.git",
+}
+
+description = {
+ summary = "Support for the old torch7 dok system",
+ detailed = [[
+ ]],
+ homepage = "https://github.com/torch/dok",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+ "sundown >= 1.0"
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["dok.init"] = "init.lua",
+ ["dok.inline"] = "inline.lua",
+ },
+ install = {
+ lua = {
+-- ["dok.README"] = "README.md"
+ }
+ }
+}