voidrice/.local/bin/compiler

53 lines
1.8 KiB
Text
Raw Normal View History

#!/bin/sh
2019-05-31 23:38:43 +00:00
2018-07-25 17:45:05 +00:00
# This script will compile or run another finishing operation on a document. I
2018-10-26 04:28:09 +00:00
# have this script run via vim.
2018-04-11 00:48:45 +00:00
#
2019-05-31 23:38:43 +00:00
# Compiles .tex. groff (.mom, .ms), .rmd, .md. Opens .sent files as sent
# presentations. Runs scripts based on extention or shebang
2020-05-30 22:58:41 +00:00
#
# Note that .tex files which you wish to compile with XeLaTeX should have the
# string "xelatex" somewhere in a comment/command in the first 5 lines.
2018-04-11 00:48:45 +00:00
2018-07-24 17:34:38 +00:00
file=$(readlink -f "$1")
dir=${file%/*}
2018-04-11 00:48:45 +00:00
base="${file%.*}"
ext="${file##*.}"
2018-10-26 04:28:09 +00:00
cd "$dir" || exit
2018-04-11 00:48:45 +00:00
2018-07-25 16:14:38 +00:00
textype() { \
command="pdflatex"
( sed 5q "$file" | grep -i -q 'xelatex' ) && command="xelatex"
2018-07-25 17:45:05 +00:00
$command --output-directory="$dir" "$base" &&
2018-10-26 04:28:09 +00:00
grep -i addbibresource "$file" >/dev/null &&
2018-07-25 17:45:05 +00:00
biber --input-directory "$dir" "$base" &&
$command --output-directory="$dir" "$base" &&
$command --output-directory="$dir" "$base"
}
2018-04-11 00:48:45 +00:00
case "$ext" in
[0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;;
c) cc "$file" -o "$base" && "$base" ;;
go) go run "$file" ;;
h) sudo make install ;;
m) octave "$file" ;;
md) if [ -x "$(command -v lowdown)" ] >/dev/null; then
2020-05-30 22:58:41 +00:00
lowdown -d nointem -e super "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf
elif [ -x "$(command -v groffdown)" ] >/dev/null; then
2020-05-30 22:58:41 +00:00
groffdown -i "$file" | groff > "$base.pdf"
else
pandoc "$file" --pdf-engine=xelatex -o "$base".pdf
fi ; ;;
mom) preconv "$file" | refer -PS -e | groff -mom -kept -T pdf > "$base".pdf ;;
ms) preconv "$file" | refer -PS -e | groff -me -ms -kept -T pdf > "$base".pdf ;;
py) python "$file" ;;
[rR]md) Rscript -e "rmarkdown::render('$file', quiet=TRUE)" ;;
2020-06-08 09:51:13 +00:00
rs) cargo build ;;
sass) sassc -a "$file" "$base.css" ;;
scad) openscad -o "$base".stl "$file" ;;
sent) setsid -f sent "$file" 2>/dev/null ;;
tex) textype "$file" ;;
2019-01-17 17:18:41 +00:00
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
2018-04-11 00:48:45 +00:00
esac