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

github.com/torch/image.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--image-1.0.1-0.rockspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/image-1.0.1-0.rockspec b/image-1.0.1-0.rockspec
new file mode 100644
index 0000000..25d96aa
--- /dev/null
+++ b/image-1.0.1-0.rockspec
@@ -0,0 +1,30 @@
+package = "image"
+version = "1.0.1-0"
+
+source = {
+ url = "git://github.com/clementfarabet/lua---image",
+ tag = "1.0.1-0"
+}
+
+description = {
+ summary = "An image library for Torch",
+ detailed = [[
+This package provides routines to load/save and manipulate images
+using Torch's Tensor data structure.
+ ]],
+ homepage = "https://github.com/clementfarabet/lua---image",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "sys >= 1.0",
+ "xlua >= 1.0"
+}
+
+build = {
+ type = "cmake",
+ variables = {
+ LUAROCKS_PREFIX = "$(PREFIX)"
+ }
+}