-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
38 lines (27 loc) · 956 Bytes
/
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
#!/usr/bin/env texlua
--[[
For documentation and usage of the l3build system
see l3build.pdf
--]]
module = "fewerfloatpages"
sourcefiles = {"*.dtx", "*.ins", "*-????-??-??.sty", "l3doc-TUB.cls"}
typesetfiles = {"*.tex"}
checkruns = 1
typesetruns = 4
-- Upload meta data (don't forget to run l3build ctan first!)
uploadconfig = {
pkg = module,
version = "v1.0b 2021-03-02",
author = "Frank Mittelbach",
license = "lppl1.3c",
summary = "Avoid unnecessary float pages if a float page is fairly empty and floats can be placed as top/bottom floats instead",
ctanPath = "/macros/latex/contrib/" .. module,
repository = "https://github.com/FrankMittelbach/fmitex-fewerfloatpages",
bugtracker = "https://github.com/FrankMittelbach/fmitex-fewerfloatpages/issues",
uploader = "Frank Mittelbach",
email = "[email protected]",
update = true ,
}
if not release_date then
dofile(kpse.lookup("l3build.lua"))
end