vumpire/pdf/justfile

33 lines
627 B
Plaintext

# list all options
default:
just --list --unsorted
# build without images
dev:
groff -Tpdf -ms -p -t -R vumpire.ms > vumpire.pdf
# groff 2 pdf
build:
pdfroff -ms -p -t -R vumpire.ms > vumpire.pdf && just metadata
# add EXIF data to pdf
metadata:
exiftool -Author="dozens" -Title="Vumpire\!" vumpire.pdf
# groff 2 text
text:
groff -Tutf8 -R -p -t -ms vumpire.ms | sed -e 's/\x1b\[[0-9;]*m//g' > vumpire.txt
# watch for changes
watch:
ls vumpire.ms | entr just dev
# build bibliography file
bib:
recsel refer.rec | recfmt -f refer.recfmt > refer.bib
# upload to town
up:
scp vumpire.* tilde:public_html