-
Notifications
You must be signed in to change notification settings - Fork 4
/
fontproof.rockspec.in
50 lines (46 loc) · 1.74 KB
/
fontproof.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
rockspec_format = "3.0"
package = "@PACKAGE@"
version = "@SEMVER@-@ROCKREV@"
source = {
url = "git+https://github.com/sile-typesetter/fontproof.git",
tag = "@TAG@"
}
description = {
summary = "A font design testing class for SILE",
detailed = [[FontProof enables you to produce PDF font test documents without
fiddling with InDesign or other manual page layout or word
processing programs. You can apply one of the predesigned test
documents (to be added later) or use FontProof to build your own
custom font test document.]],
license = "MIT",
homepage = "https://github.com/sile-typesetter/fontproof",
issues_url = "https://github.com/sile-typesetter/fontproof/issues",
maintainer = "Caleb Maclennan <[email protected]>",
labels = { "typesetting", "fonts" }
}
dependencies = {
"lua >= 5.1",
"lua_cliargs == 3.0-2"
}
build = {
type = "builtin",
modules = {
["sile.classes.fontproof"] = "classes/fontproof/init.lua",
["sile.packages.fontproof"] = "packages/fontproof/init.lua",
["sile.packages.fontproof.groups"] = "packages/fontproof/groups.lua",
["sile.packages.fontproof.gutenberg"] = "packages/fontproof/gutenberg.lua",
["sile.packages.fontproof.texts"] = "packages/fontproof/texts.lua",
["sile.packages.fontproof.templates.locator"] = "templates/locator.lua"
},
install = {
lua = {
["sile.packages.fontproof.templates.full"] = "templates/full.sil",
["sile.packages.fontproof.templates.gutenberg"] = "templates/gutenberg.sil",
["sile.packages.fontproof.templates.test"] = "templates/test.sil",
["sile.packages.fontproof.templates.unichar"] = "templates/unichar.sil"
},
bin = {
fontproof = "src/fontproof.lua"
}
}
}