-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathluaplot-1.3.1-1.rockspec
More file actions
45 lines (45 loc) · 1.49 KB
/
Copy pathluaplot-1.3.1-1.rockspec
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
rockspec_format = "3.0"
package = "luaplot"
version = "1.3.1-1"
description = {
summary = "The library that implements a model of a 2D plot with support for displaying functions of time (as in an oscilloscope).",
license = "MIT",
maintainer = "thewizardplusplus <thewizardplusplus@yandex.ru>",
homepage = "https://github.com/thewizardplusplus/luaplot",
}
source = {
url = "git+https://github.com/thewizardplusplus/luaplot.git",
tag = "v1.3.1",
}
dependencies = {
"lua >= 5.1",
"middleclass >= 4.1.1, < 5.0",
"luatypechecks >= 1.3.4, < 2.0",
"luaserialization >= 1.3.0, < 2.0",
"luamath >= 1.2.1, < 2.0",
}
test_dependencies = {
"luaunit >= 3.4, < 4.0",
}
build = {
type = "builtin",
modules = {
["luaplot.iterators"] = "iterators.lua",
["luaplot.iterators_test"] = "iterators_test.lua",
["luaplot.iterable"] = "iterable.lua",
["luaplot.iterable_test"] = "iterable_test.lua",
["luaplot.plot"] = "plot.lua",
["luaplot.plot_test"] = "plot_test.lua",
["luaplot.plotiterator"] = "plotiterator.lua",
["luaplot.plotiterator_test"] = "plotiterator_test.lua",
["luaplot.plotiteratorfactory"] = "plotiteratorfactory.lua",
["luaplot.plotiteratorfactory_test"] = "plotiteratorfactory_test.lua",
["luaplot.oscillogram"] = "oscillogram.lua",
["luaplot.oscillogram_test"] = "oscillogram_test.lua",
["luaplot.distancelimit"] = "distancelimit.lua",
["luaplot.distancelimit_test"] = "distancelimit_test.lua",
},
copy_directories = {
"doc",
},
}