voidrice/.scripts/tools/compiler

38 lines
1.2 KiB
Text
Raw Normal View History

2018-09-04 18:21:13 +00:00
#!/bin/sh
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-01-17 17:18:41 +00:00
# Compiles .tex. groff (.mom, .ms), .rmd, .md.
# Opens .sent files as sent presentations.
# Runs scripts based on extention or shebang
2018-04-11 00:48:45 +00:00
2018-07-24 17:34:38 +00:00
file=$(readlink -f "$1")
2018-07-25 17:45:05 +00:00
dir=$(dirname "$file")
2018-04-11 00:48:45 +00:00
base="${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-07-25 16:14:38 +00:00
}
2018-04-11 00:48:45 +00:00
2018-07-25 17:45:05 +00:00
case "$file" in
2018-11-04 00:59:02 +00:00
*\.ms) refer -PS -e "$file" | groff -me -ms -kejpt -T pdf > "$base".pdf ;;
2018-11-24 14:06:16 +00:00
*\.mom) refer -PS -e "$file" | groff -mom -kejpt -T pdf > "$base".pdf ;;
2018-11-17 10:01:07 +00:00
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
2018-07-25 17:45:05 +00:00
*\.tex) textype "$file" ;;
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
2019-01-17 17:18:41 +00:00
*config.h) sudo make install ;;
*\.c) cc "$file" -o "$base" && "$base" ;;
*\.py) python "$file" ;;
*\.go) go run "$file" ;;
2019-01-17 17:18:41 +00:00
*\.sent) setsid sent "$file" 2>/dev/null & ;;
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
2018-04-11 00:48:45 +00:00
esac