guess we don't want the build dir
[latex2e.git] / trunk / required / graphics / build.lua
blob1cd54e97f34c64890d3b6867414664a699649f5f
1 #!/usr/bin/env texlua
3 -- Build script for LaTeX2e "graphics" files
5 -- Identify the bundle and module
6 bundle = ""
7 module = "graphics"
9 -- CTAN's name for this is a bit different from ours
10 ctanpkg = "latex-graphics"
12 -- Location of main directory: use Unix-style path separators
13 maindir = "../.."
15 -- Minor modifications to file types
16 installfiles = {"*.def", "*.sty"}
17 typesetfiles = {"*.dtx", "*.tex"}
18 docfiles = {"cat.eps"}
20 -- Load the common settings for the LaTeX2e repo
21 dofile (maindir .. "/build-config.lua")
23 -- Find and run the build system
24 kpse.set_program_name ("kpsewhich")
25 dofile (kpse.lookup ("l3build.lua"))