-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
43 lines (30 loc) · 1.02 KB
/
build.lua
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
#!/usr/bin/env texlua
--[[
For documentation and usage of the l3build system
see l3build.pdf
--]]
module = "unicodefonttable"
sourcefiles = {"*.dtx", "*.ins", "*-????-??-??.sty", "*-doc.tex", "*-code.tex", "l3doc-TUB2024.cls"}
installfiles = {"*.sty", ".cls", "unicodefont.tex"}
typesetfiles = {"*-doc.tex", "*-code.tex", "*-samples.tex"}
typesetexe = "lualatex"
stdengine = "luatex"
checkengines = { "luatex" } -- for now
checkruns = 2
-- Upload meta data
uploadconfig = {
pkg = "unicodefonttable",
version = "v1.0i 2024-06-06",
author = "Frank Mittelbach",
license = "lppl1.3c",
summary = "A Unicode font table generator",
ctanPath = "/macros/latex/contrib/unicodefonttable",
repository = "https://github.com/frankmittelbach/fmitex-unicodefonttable",
bugtracker = "https://github.com/FrankMittelbach/fmitex-unicodefonttable/issues",
uploader = "Frank Mittelbach",
email = "[email protected]",
update = true ,
}
if not release_date then
dofile(kpse.lookup("l3build.lua"))
end