-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-nucleo-scm-1.rockspec
72 lines (72 loc) · 3.77 KB
/
lua-nucleo-scm-1.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package = "lua-nucleo"
version = "scm-1"
source = {
url = "git://github.com/lua-nucleo/lua-nucleo.git",
branch = "master"
}
description = {
summary = "A random collection of core and utility level Lua libraries",
homepage = "http://github.com/lua-nucleo/lua-nucleo",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "none",
install = {
lua = {
["lua-nucleo.algorithm"] = "lua-nucleo/algorithm.lua";
["lua-nucleo.args"] = "lua-nucleo/args.lua";
["lua-nucleo.assert"] = "lua-nucleo/assert.lua";
["lua-nucleo.checker"] = "lua-nucleo/checker.lua";
["lua-nucleo.code.exports"] = "lua-nucleo/code/exports.lua";
["lua-nucleo.code.foreign-globals.lua5_1"] = "lua-nucleo/code/foreign-globals/lua5_1.lua";
["lua-nucleo.code.foreign-globals.luajit2"] = "lua-nucleo/code/foreign-globals/luajit2.lua";
["lua-nucleo.code.globals"] = "lua-nucleo/code/globals.lua";
["lua-nucleo.code.profile"] = "lua-nucleo/code/profile.lua";
["lua-nucleo.coro"] = "lua-nucleo/coro.lua";
["lua-nucleo.deque"] = "lua-nucleo/deque.lua";
["lua-nucleo.diagnostics"] = "lua-nucleo/diagnostics.lua";
["lua-nucleo.dsl.common_load_schema"] = "lua-nucleo/dsl/common_load_schema.lua";
["lua-nucleo.dsl.dsl_loader"] = "lua-nucleo/dsl/dsl_loader.lua";
["lua-nucleo.dsl.dump_nodes"] = "lua-nucleo/dsl/dump_nodes.lua";
["lua-nucleo.dsl.tagged-tree"] = "lua-nucleo/dsl/tagged-tree.lua";
["lua-nucleo.dsl.walk_data_with_schema"] = "lua-nucleo/dsl/walk_data_with_schema.lua";
["lua-nucleo.ensure"] = "lua-nucleo/ensure.lua";
["lua-nucleo.factory"] = "lua-nucleo/factory.lua";
["lua-nucleo.functional"] = "lua-nucleo/functional.lua";
["lua-nucleo.import"] = "lua-nucleo/import.lua";
["lua-nucleo.init"] = "lua-nucleo/init.lua";
["lua-nucleo.language"] = "lua-nucleo/language.lua";
["lua-nucleo.log"] = "lua-nucleo/log.lua";
["lua-nucleo.math"] = "lua-nucleo/math.lua";
["lua-nucleo.misc"] = "lua-nucleo/misc.lua";
["lua-nucleo.module"] = "lua-nucleo/module.lua";
["lua-nucleo.ordered_named_cat_manager"] = "lua-nucleo/ordered_named_cat_manager.lua";
["lua-nucleo.pcall"] = "lua-nucleo/pcall.lua";
["lua-nucleo.prettifier"] = "lua-nucleo/prettifier.lua";
["lua-nucleo.priority_queue"] = "lua-nucleo/priority_queue.lua";
["lua-nucleo.random"] = "lua-nucleo/random.lua";
["lua-nucleo.require_and_declare"] = "lua-nucleo/require_and_declare.lua";
["lua-nucleo.sandbox"] = "lua-nucleo/sandbox.lua";
["lua-nucleo.scoped_cat_tree_manager"] = "lua-nucleo/scoped_cat_tree_manager.lua";
["lua-nucleo.stack_with_factory"] = "lua-nucleo/stack_with_factory.lua";
["lua-nucleo.strict"] = "lua-nucleo/strict.lua";
["lua-nucleo.string"] = "lua-nucleo/string.lua";
["lua-nucleo.suite"] = "lua-nucleo/suite.lua";
["lua-nucleo.table-utils"] = "lua-nucleo/table-utils.lua";
["lua-nucleo.table"] = "lua-nucleo/table.lua";
["lua-nucleo.tdeepequals"] = "lua-nucleo/tdeepequals.lua";
["lua-nucleo.testing.decorators"] = "lua-nucleo/testing/decorators.lua";
["lua-nucleo.timed_queue"] = "lua-nucleo/timed_queue.lua";
["lua-nucleo.timestamp"] = "lua-nucleo/timestamp.lua";
["lua-nucleo.tpretty"] = "lua-nucleo/tpretty.lua";
["lua-nucleo.tserialize"] = "lua-nucleo/tserialize.lua";
["lua-nucleo.tstr"] = "lua-nucleo/tstr.lua";
["lua-nucleo.type"] = "lua-nucleo/type.lua";
["lua-nucleo.typeassert"] = "lua-nucleo/typeassert.lua";
["lua-nucleo.util.anim.interpolator"] = "lua-nucleo/util/anim/interpolator.lua";
}
}
}