- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlua-gnuplot-0.3-1.rockspec
More file actions
Latest commit
32 lines (28 loc) · 847 Bytes
/
Copy pathlua-gnuplot-0.3-1.rockspec
File metadata and controls
32 lines (28 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package="lua-gnuplot"
version="0.3-1"
source= {
url="https://bitbucket.org/lucashnegri/lua-gnuplot/get/v0.3.tar.bz2",
md5="15e010691ab518b9b1b55e1d257f378a", --update
dir="lucashnegri-lua-gnuplot-6119390145a8", --update
}
description= {
summary="Lua interface for gnuplot",
detailed=[[
lua-gnuplot is a small library for using gnuplot in a Lua program. It works by
generating a gnuplot script from a Lua plot definition and calling the
gnuplot program for you.
]],
homepage="https://bitbucket.org/lucashnegri/lua-gnuplot",
license="MIT",
maintainer="Lucas Hermann Negri <lucashnegri@gmail.com>",
}
dependencies= {
"lua >= 5.1"
}
build= {
type="builtin",
modules= {
["gnuplot"] ="gnuplot.lua",
},
copy_directories= {},
}