Update LuaTeX testfiles for ^@ change
[latex2e.git] / latex2e-20170101 / required / amsmath / build.lua
blob2f81b77068cdb702e7dee590206ea97ee21b6f76
1 #!/usr/bin/env texlua
3 -- Build script for LaTeX2e "amsmath" files
5 -- Identify the bundle and module
6 bundle = ""
7 module = "amsmath"
9 -- CTAN's name for this is a bit different from ours
10 ctanpkg = "latex-amsmath"
12 -- Location of main directory: use Unix-style path separators
13 maindir = "../.."
15 -- Minor modifications to file types
16 sourcefiles = {"*.dtx", "*.ins", "amstex.sty"}
17 typesetfiles = {"*.dtx", "*.tex"}
19 -- Avoid isolation (cf. babel)
20 checkdeps = { }
21 checksearch = true
22 unpackdeps = { }
23 unpacksearch = true
25 -- Load the common settings for the LaTeX2e repo
26 dofile (maindir .. "/build-config.lua")
28 -- Find and run the build system
29 kpse.set_program_name ("kpsewhich")
30 dofile (kpse.lookup ("l3build.lua"))