forked from sdaps/sdaps-class
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.lua
More file actions
executable file
·30 lines (22 loc) · 761 Bytes
/
Copy pathbuild.lua
File metadata and controls
executable file
·30 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env texlua
-- Build script for LaTeX3 "sdaps" files
-- Identify the bundle and module: the module may be empty in the case where
-- there is no subdivision
bundle = "sdaps"
module = "sdaps"
-- Location of main directory: use Unix-style path separators
maindir = "."
-- Need xparse
--checkdeps = {}
checkruns = 3
-- No luatex support currently
checkengines = { "pdftex", "xetex" }
demofiles = { "arraydemo.tex", "testclassic.tex", "test.tex"}
sourcefiles = { "*.ins", "*.dtx", "code128.tex" }
installfiles = { "*.sty", "*.cls", "*.tex" }
kpse.set_program_name ("kpsewhich")
if not release_date then
l3build = kpse.lookup ("l3build.lua")
assert (l3build, "l3build is not installed!")
dofile (kpse.lookup ("l3build.lua"))
end