build 707 B

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/sh
  2. #
  3. # Copyright © 2014-2015, Peter Harpending. <pharpend2@gmail.com>
  4. #
  5. # Copying and distribution of this file, with or without modification, are
  6. # permitted in any medium without royalty provided the copyright notice and this
  7. # notice are preserved. This file is offered as-is, without any warranty.
  8. clean_and_die() {
  9. cd $orig_dir
  10. rm -rf tmp
  11. exit $1
  12. }
  13. orig_dir=$(pwd)
  14. mkdir tmp
  15. cp -rvf lysa.ltx appendices/* chapters/* code/* graphs/* \
  16. bibliographies/* images/* tex/latex-solarized/* tmp/
  17. cd tmp
  18. # for i in *.sage ; do
  19. # sage $i || clean_and_die 1
  20. # done
  21. pdflatex lysa.ltx || clean_and_die 1
  22. bibtex lysa
  23. pdflatex lysa.ltx && pdflatex lysa.ltx
  24. cp lysa.pdf ..
  25. clean_and_die 0