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

github.com/torch/cwrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rocks/cwrap-scm-1.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/rocks/cwrap-scm-1.rockspec b/rocks/cwrap-scm-1.rockspec
new file mode 100644
index 0000000..faec4e5
--- /dev/null
+++ b/rocks/cwrap-scm-1.rockspec
@@ -0,0 +1,32 @@
+package = "cwrap"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/torch/cwrap.git",
+}
+
+description = {
+ summary = "Advanced automatic wrapper for C functions",
+ detailed = [[
+ ]],
+ homepage = "https://github.com/torch/cwrap",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["cwrap.init"] = "init.lua",
+ ["cwrap.cinterface"] = "cinterface.lua",
+ ["cwrap.types"] = "types.lua",
+ },
+ install = {
+ lua = {
+ ["cwrap.README"] = "README.md"
+ }
+ }
+}