-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.lua
35 lines (30 loc) · 1.07 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
-- build script for l3charts-doc.tex
module = "l3charts"
-- Typeset configuration
typesetexe = "lualatex"
typesetopts = "--interaction=nonstopmode --shell-escape --recorder --file-line-error --synctex 1"
typesetfiles = {
"l3charts-doc.tex"
}
-- As we don't use .dtx and .ins copy all files needed to build doc
sourcefiles = {
"*.sty", "*.cls", "*.ist", "*.tex"
}
-- custom index style
indexstyle = "l3charts-doc.ist"
installfiles = sourcefiles
uploadconfig = {
pkg = "l3charts",
version = "0.7.1",
author = "Éric BURGHARD",
uploader = "Éric BURGHARD",
email = "ctan@itsufficient.me",
license = "lppl1.3c",
summary = "Customizable charts made with TikZ and LaTeX3",
topics = {"expl3", "pgf-tikz"},
ctanPath = "/graphics/pgf/contrib/l3charts",
home = "https://github.com/eburghar/l3charts.git",
repository = "https://github.com/eburghar/l3charts.git",
bugtracker = "https://github.com/eburghar/l3charts/issues",
note = [[Uploaded automatically by l3build]]
}