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

github.com/torch/gnuplot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rocks/gnuplot-scm-1.rockspec')
-rw-r--r--rocks/gnuplot-scm-1.rockspec44
1 files changed, 44 insertions, 0 deletions
diff --git a/rocks/gnuplot-scm-1.rockspec b/rocks/gnuplot-scm-1.rockspec
new file mode 100644
index 0000000..786515e
--- /dev/null
+++ b/rocks/gnuplot-scm-1.rockspec
@@ -0,0 +1,44 @@
+package = "gnuplot"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/torch/gnuplot.git",
+}
+
+description = {
+ summary = "Torch interface to Gnuplot",
+ detailed = [[
+ ]],
+ homepage = "https://github.com/torch/gnuplot",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+ "torch >= 7.0",
+ "paths >= 1.0",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["gnuplot.init"] = "init.lua",
+ ["gnuplot.gnuplot"] = "gnuplot.lua",
+ ["gnuplot.hist"] = "hist.lua"
+ },
+
+ install = {
+ lua = {
+ -- this is ugly (but this is luarocks)
+ ["gnuplot.doc.README"] = "README.md",
+ ["gnuplot.doc.plot_filled"] = "doc/plot_filled.png",
+ ["gnuplot.doc.plot_hist"] = "doc/plot_hist.png",
+ ["gnuplot.doc.plot_imagesc"] = "doc/plot_imagesc.png",
+ ["gnuplot.doc.plot_sincos"] = "doc/plot_sincos.png",
+ ["gnuplot.doc.plot_splot"] = "doc/plot_splot.png",
+ ["gnuplot.doc.plot_splot2"] = "doc/plot_splot2.png",
+ ["gnuplot.doc.plot_x"] = "doc/plot_x.png",
+ ["gnuplot.doc.plot_xyf"] = "doc/plot_xyf.png"
+ }
+ }
+}