-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmods.rockspec.template
More file actions
51 lines (47 loc) · 1.46 KB
/
mods.rockspec.template
File metadata and controls
51 lines (47 loc) · 1.46 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
46
47
48
49
50
51
rockspec_format = "3.0"
package = "mods"
version = "__VERSION__-1"
source = {
branch = "main",
tag = "v__VERSION__",
url = "git+https://github.com/luamod/mods.git",
}
description = {
summary = "Pure Lua modules",
homepage = "https://luamod.github.io/mods",
license = "MIT",
detailed = [[
Mods provides small, focused Lua modules:
fs, calendar, glob, is, keyword, List, log, ntpath, operator, path, posixpath,
repr, runtime, Set, str, stringcase, tbl, template, and validate.
]],
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["mods"] = "src/mods/init.lua",
["mods.calendar"] = "src/mods/calendar.lua",
["mods.fs"] = "src/mods/fs.lua",
["mods.glob"] = "src/mods/glob.lua",
["mods.is"] = "src/mods/is.lua",
["mods.keyword"] = "src/mods/keyword.lua",
["mods.List"] = "src/mods/List.lua",
["mods.log"] = "src/mods/log.lua",
["mods.ntpath"] = "src/mods/ntpath.lua",
["mods.operator"] = "src/mods/operator.lua",
["mods.path"] = "src/mods/path.lua",
["mods.posixpath"] = "src/mods/posixpath.lua",
["mods.repr"] = "src/mods/repr.lua",
["mods.runtime"] = "src/mods/runtime.lua",
["mods.Set"] = "src/mods/Set.lua",
["mods.str"] = "src/mods/str.lua",
["mods.stringcase"] = "src/mods/stringcase.lua",
["mods.tbl"] = "src/mods/tbl.lua",
["mods.template"] = "src/mods/template.lua",
["mods.utils"] = "src/mods/utils.lua",
["mods.validate"] = "src/mods/validate.lua",
},
}