-
Notifications
You must be signed in to change notification settings - Fork 0
/
fntbuild-config.lua
executable file
·55 lines (55 loc) · 1.45 KB
/
fntbuild-config.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
44
45
46
47
48
49
50
51
52
53
54
55
-- $Id: fntbuild-config.lua 10633 2024-11-15 06:07:23Z cfrees $
-- configuration for nfssext
-------------------------------------------------
sourcefiledir = sourcefiledir or "."
maindir = maindir or ".."
bakext = ".bkup"
checkdeps = {maindir .. "/nfssext-cfr", maindir .. "/fnt-tests"}
ctanreadme = "README.md"
demofiles = {"*-example.tex"}
flatten = true
flattentds = false
manifestfile = "manifest.txt"
packtdszip = false
tagfiles = {"*.dtx", "*.ins", "manifest.txt", "MANIFEST.txt", "README", "README.md"}
typesetdeps = {maindir .. "/nfssext-cfr"}
typesetsourcefiles = {keepdir .. "/*", "nfssext-cfr*.sty"}
unpackexe = "pdflatex"
unpackfiles = {"*.ins"}
-------------------------------------------------
builddeps = { maindir .. "/fontscripts" }
checksuppfiles_add = {
"/fonts/enc/dvips/lm",
"/fonts/tfm/public/lm",
"/fonts/type1/public/lm",
"etoolbox.sty",
"ly1enc.def",
"ly1enc.dfu",
"ly1lmr.fd",
"ly1lmss.fd",
"ly1lmtt.fd",
"omllmm.fd",
"omllmr.fd",
"omslmr.fd",
"omslmsy.fd",
"omxlmex.fd",
"ot1lmr.fd",
"ot1lmss.fd",
"ot1lmtt.fd",
"svn-prov.sty",
"ts1lmdh.fd",
"ts1lmr.fd",
"ts1lmss.fd",
"ts1lmssq.fd",
"ts1lmtt.fd",
"ts1lmvtt.fd",
}
-------------------------------------------------
-- tag.lua
tagfile = tagfile or maindir .. "/tag.lua"
if fileexists(tagfile) then
dofile(tagfile)
end
-------------------------------------------------
-------------------------------------------------
-- vim: ts=2:sw=2:et:foldmethod=marker: