First idea for compiling tex documents
This commit is contained in:
parent
bb633a212c
commit
2606a82c17
BIN
datasets/fonts/CaviarDreams.ttf
Normal file
BIN
datasets/fonts/CaviarDreams.ttf
Normal file
Binary file not shown.
BIN
datasets/fonts/CaviarDreams_Bold.ttf
Normal file
BIN
datasets/fonts/CaviarDreams_Bold.ttf
Normal file
Binary file not shown.
BIN
datasets/fonts/CaviarDreams_BoldItalic.ttf
Normal file
BIN
datasets/fonts/CaviarDreams_BoldItalic.ttf
Normal file
Binary file not shown.
BIN
datasets/fonts/CaviarDreams_Italic.ttf
Normal file
BIN
datasets/fonts/CaviarDreams_Italic.ttf
Normal file
Binary file not shown.
4
hooks/build/texlive/xelatex
Normal file
4
hooks/build/texlive/xelatex
Normal file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
cd src
|
||||
make
|
7
hooks/containerbuild/texlive/add-ressources
Normal file
7
hooks/containerbuild/texlive/add-ressources
Normal file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
||||
echo 'RUN apt-get update && apt-get install --yes --no-install-recommends build-essential devscripts equivs python3' >> Dockerfile
|
||||
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|
13
hooks/postbuild/texlive/export-dist
Executable file
13
hooks/postbuild/texlive/export-dist
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
function move_output_to_dist {
|
||||
find . -maxdepth 1 -name "$1" -type f -print0 | xargs -0r mv -t /dist/
|
||||
}
|
||||
|
||||
# Create new directory
|
||||
mkdir -p /dist
|
||||
|
||||
# Move generated files
|
||||
move_output_to_dist "*.pdf"
|
||||
|
||||
tamarin_success "Done :-)"
|
Loading…
Reference in New Issue
Block a user