-
Notifications
You must be signed in to change notification settings - Fork 1
/
ljarray-0.1-3.rockspec
37 lines (33 loc) · 1.04 KB
/
ljarray-0.1-3.rockspec
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
package = "ljarray"
version = "0.1-3"
source = {
url = "https://github.com/cstraehl/ljarray"
}
description = {
summary = "An experimental n-dimensional native array library for luajit",
detailed = [[
This is a very experimental n-dimensional array library for
luajit's foreign function interface.
]],
homepage = "https://github.com/cstraehl/ljarray",
license = "BSD"
}
dependencies = {
}
build = {
type = "builtin",
modules = {
["ljarray.array"] = "array.lua",
["ljarray.array_types"] = "array_types.lua",
["ljarray.array_base"] = "array_base.lua",
["ljarray.array_map"] = "array_map.lua",
["ljarray.array_iterators"] = "array_iterators.lua",
["ljarray.array_math"] = "array_math.lua",
["ljarray.array_sort"] = "array_sort.lua",
["ljarray.helpers"] = "helpers.lua",
["ljarray.benchmark"] = "benchmark.lua",
["ljarray.log"] = "log.lua",
["ljarray.ds.splay_heap"] = "ds/splay_heap.lua",
["ljarray.ds.splay_heap_raw"] = "ds/splay_heap_raw.lua",
}
}