59 lines
3.4 KiB
Bash
Executable File
59 lines
3.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "
|
|
▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ▄▄ ▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄
|
|
█ █ █ █ █ █ █▄█ █ █ █ █ █ █ █ █ █ █ ▄ █ █ █
|
|
█ █ █ ▄ █▄ ▄█ ▄▄▄█ █ █ █▄█ █ ▄▄▄█ █ █ ▄ █ ▄▄▄█ █ █ █ █ ▄▄▄▄▄█
|
|
█ █ █ █▄█ █ █ █ █ █▄▄▄█ █ █ █ █▄▄▄█ █ █ █▄█ █ █▄▄▄█ █▄▄█▄█ █▄▄▄▄▄
|
|
█ █▄▄▄█ █ █ █ █ ▄▄▄██ █ █ ▄ █ ▄▄▄█ █▄▄▄█ ▄▄▄█ ▄▄▄█ ▄▄ █▄▄▄▄▄ █
|
|
█ █ ▄ █ █ █ █ █▄▄▄█ ▄ █ █ █ █ █ █▄▄▄█ █ █ █ █▄▄▄█ █ █ █▄▄▄▄▄█ █
|
|
█▄▄▄▄▄▄▄█▄█ █▄▄█ █▄▄▄█ █▄▄▄▄▄▄▄█▄▄█ █▄▄█ █▄▄█ █▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄▄▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█
|
|
|
|
==> Building <==
|
|
|
|
"
|
|
|
|
mkdir dist/
|
|
cat ./janishutz-helpers.sty >./dist/janishutz-helpers-minimal.sty
|
|
|
|
# Build minimal scope
|
|
echo "" >>./dist/janishutz-helpers-minimal.sty
|
|
cat ./config/config.tex >>./dist/janishutz-helpers-minimal.sty
|
|
echo "" >>./dist/janishutz-helpers-minimal.sty
|
|
cat ./main/core.tex >>./dist/janishutz-helpers-minimal.sty
|
|
echo "" >>./dist/janishutz-helpers-minimal.sty
|
|
cat ./main/style/style.tex >>./dist/janishutz-helpers-minimal.sty
|
|
echo "" >>./dist/janishutz-helpers-minimal.sty
|
|
cat ./main/style/common.tex >>./dist/janishutz-helpers-minimal.sty
|
|
|
|
# Build recommended
|
|
cat ./dist/janishutz-helpers-minimal.sty >./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/math.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/cs.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/index.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/style/counters.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/style/cs.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/style/math.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./main/style/language.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./extra/bib.tex >>./dist/janishutz-helpers-recommended.sty
|
|
echo "" >>./dist/janishutz-helpers-recommended.sty
|
|
cat ./extra/glossary.tex >>./dist/janishutz-helpers-recommended.sty
|
|
|
|
# Build full
|
|
cat ./dist/janishutz-helpers-recommended.sty >./dist/janishutz-helpers-full.sty
|
|
echo "" >>./dist/janishutz-helpers-full.sty
|
|
cat ./extra/minted.tex >>./dist/janishutz-helpers-full.sty
|
|
|
|
# Copy letter
|
|
cp ./scopes/letter.tex ./dist/janishutz-helpers-letters.sty
|
|
|
|
echo "==> Done"
|