Typos
[latex2e.git] / trunk / required / babel / build.lua
blob1dbf2cad73d188e7ef634ef2dbd17d735823d6e2
1 #!/usr/bin/env texlua
3 -- Build script for LaTeX2e "babel" files
5 -- Identify the bundle and module
6 bundle = ""
7 module = "babel"
9 -- Location of main directory: use Unix-style path separators
10 maindir = "../.."
12 -- Minor modifications to file types
13 installfiles = {"*.def", "*.ldf", "*.sty", "*.tex"}
14 sourcefiles = {"*.dtx", "*.ins"}
15 typesetfiles = {"babel.dtx"}
17 -- babel tests lots of third-party code
18 checkdeps = { }
19 checksearch = true
20 unpackdeps = { }
21 unpacksearch = true
23 -- Avoid zapping babel.pdf
24 cleanfiles = {"*.log", "*.zip"}
26 -- Override formats to be used
27 asciiengines = {"pdftex"}
28 stdengine = "pdftex"
29 checkengines = {"pdftex"}
31 -- Load the common settings for the LaTeX2e repo
32 dofile (maindir .. "/build-config.lua")
34 -- Find and run the build system
35 kpse.set_program_name ("kpsewhich")
36 dofile (kpse.lookup ("l3build.lua"))