the-source/src/build.sh

61 lines
1.1 KiB
Bash
Raw Normal View History

2020-11-12 12:13:24 -05:00
#!/usr/bin/env bash
set -e
VERSION=1.0.0
2020-11-12 12:13:24 -05:00
FILES="
title.txt
index.md
character-sheets.md
character-sheets/*.md
2020-11-12 12:13:24 -05:00
"
pandoc \
-o ../out/the_source-${VERSION}.epub \
--toc \
--toc-depth=2 \
--wrap=preserve \
--epub-chapter-level=2 \
--resource-path=. \
$FILES
pandoc \
-o ../out/the_source-${VERSION}.pdf \
--include-in-header sectionpagebreak.tex \
--variable=subparagraph \
--toc \
--toc-depth=2 \
--pdf-engine xelatex \
--resource-path=. \
$FILES
ebook-convert ../out/the_source-${VERSION}.epub ../out/the_source-${VERSION}.mobi
VERSION="${VERSION}-character-sheets"
FILES="
character-sheets-title.txt
character-sheets.md
character-sheets/*.md
"
pandoc \
-o ../out/the_source-${VERSION}.epub \
--toc \
--toc-depth=2 \
--wrap=preserve \
--epub-chapter-level=2 \
--resource-path=. \
$FILES
pandoc \
-o ../out/the_source-${VERSION}.pdf \
--include-in-header sectionpagebreak.tex \
--variable=subparagraph \
--toc \
--toc-depth=2 \
--pdf-engine xelatex \
--resource-path=. \
$FILES
ebook-convert ../out/the_source-${VERSION}.epub ../out/the_source-${VERSION}.mobi