Log change
[latex2e.git] / latex2e-20160331 / build-config.lua
blobc0dc9cce7b649eb0f122feb5b921323e5514bf4c
1 -- Common settings for LaTeX2e development repo
3 -- The LaTeX2e kernel is needed by everything except 'base'
4 -- There is an over-ride for that case
5 checkdeps = checkdeps or {maindir .. "/base"}
6 unpackdeps = unpackdeps or {maindir .. "/base"}
8 -- Set up the check system to work in 'stand-alone' mode
9 -- This relies on a format being built by the 'base' dependency
10 asciiengines = asciiengines or {"etex"}
11 checkformat = checkformat or "latex"
12 checkengines = checkengines or {"etex", "xetex", "luatex"}
13 checkruns = checkruns or 2
14 checksuppfiles = checksuppfiles or
15 {"color.cfg", "graphics.cfg", "test209.tex", "test2e.tex", "xetex.def", "dvips.def"}
16 stdengine = stdengine or "etex"
17 typesetsuppfiles = typesetsuppfiles or {"ltxdoc.cfg", "ltxguide.cfg"}
19 -- Build TDS-style zips
20 packtdszip = true
22 -- Global searching is disabled when unpacking and checking
23 if checksearch == nil then
24 checksearch = false
25 end
26 if unpacksearch == nil then
27 unpacksearch = false
28 end