-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathrockspec.in
32 lines (32 loc) · 919 Bytes
/
rockspec.in
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-matrix"
version = "$(_VERSION)"
source = {
url = "git://github.com/davidm/lua-matrix.git",
tag='v$(_VERSION)'
}
description = {
summary = "Matrices and matrix operations implemented in pure Lua.",
detailed = [[
This supports operations on matrices and vectors whose elements are
real, complex, or symbolic. Implemented entirely in Lua as tables.
Includes a complex number data type too.
]],
license = "MIT/X11",
homepage = "http://lua-users.org/wiki/LuaMatrix",
maintainer = "David Manura <http://lua-users.org/wiki/DavidManura>",
}
dependencies = {
"lua >= 5.1", -- including 5.2
}
build = {
type = "none",
install = {
lua = {
["complex"] = "lua/complex.lua",
["matrix"] = "lua/matrix.lua",
}
},
copy_directories = {"doc", "samples", "tests"},
}
-- test: tests/test.lua
-- _VERSION from lua/matrix.lua