forked from michal-h21/biblatex-iso690
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
63 lines (49 loc) · 1.76 KB
/
build.lua
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env texlua
-- Build script for "biblatex-iso690"
-- Identify the bundle and module
module = "biblatex-iso690"
unpackfiles = { }
-- Install biblatex style files and use these as the sources
installfiles = {"*.bbx", "*.cbx", "*.dbx", "*.lbx"}
sourcefiles = installfiles
typesetfiles = {"biblatex-iso690.tex"}
textfiles = {"README.md"}
checkengines = {"pdftex"}
checkruns = 3
function runtest_tasks(name, run)
local run = run or 1
if run == 1 or not fileexists(testdir .. "/" .. name .. ".bbl") then
return "biber -q " .. name
else
return ""
end
end
-- Release a TDS-style zip
packtdszip = false
tagfiles = {"biblatex-iso690.tex", "*.bbx", "*.cbx", "*.dbx", "*.lbx"}
function update_tag(file, content, tagname, tagdate)
local isodate_scheme = "%d%d%d%d%-%d%d%-%d%d"
local ltxdate_scheme = string.gsub(isodate_scheme, "%-", "/")
local version_scheme = "%d+%.%d+%.?%d?%w?"
local tagdate_ltx = string.gsub(tagdate, "%-", "/")
local tagyear = string.match(tagdate, "%d%d%d%d")
local tagname_safe = string.gsub(tagname, "^v", "")
if string.match(file, "^biblatex%-iso690%.tex$") then
content = string.gsub(content,
"revision={" .. version_scheme .. "}",
"revision={" .. tagname_safe .. "}")
content = string.gsub(content,
"date%s*=%s*{\\DTMDate{" .. isodate_scheme .. "}}",
"date={\\DTMDate{" .. tagdate .."}}")
return content
else
return string.gsub(content,
ltxdate_scheme .. " v" .. version_scheme,
tagdate_ltx .. " v" .. tagname_safe)
end
return content
end
kpse.set_program_name ("kpsewhich")
if not release_date then
dofile(kpse.lookup("l3build.lua"))
end