Remove more random +x properties
[latex2e.git] / trunk / required / tools / build.lua
blob4574e5ebe3c5c1296cae3c52f5215891356c974a
1 #!/usr/bin/env texlua
3 -- Build script for LaTeX2e "tools" files
5 -- Identify the bundle and module
6 bundle = ""
7 module = "tools"
9 -- CTAN's name for this is a bit different from ours
10 ctanpkg = "latex-tools"
12 -- Location of main directory: use Unix-style path separators
13 maindir = "../.."
15 -- Minor modifications to file types
16 installfiles = {"*.def", "*.sty", "*.tex"}
17 typesetfiles = {"*.dtx", "tools-overview.tex"}
18 unpackfiles = {"tools.ins"}
20 checkdeps = {maindir .. "/base", maindir .. "/required/graphics"}
22 -- Load the common settings for the LaTeX2e repo
23 dofile (maindir .. "/build-config.lua")
25 -- Find and run the build system
26 kpse.set_program_name ("kpsewhich")
27 dofile (kpse.lookup ("l3build.lua"))