build.sh 625 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. # Install Pandoc from sources (Debian version is without filters)
  3. wget https://github.com/jgm/pandoc/releases/download/1.19.2.1/pandoc-1.19.2.1-1-amd64.deb
  4. sudo dpkg -i *.deb
  5. sudo apt-get -qq update
  6. sudo apt-get install -y texlive-latex-base texlive-font-utils texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra
  7. sudo apt-get install -y python-pip
  8. sudo pip install pandoc-latex-environment
  9. cp -v cocktail.conf.smp cocktail.conf
  10. MYHOME=$(pwd)
  11. cd
  12. git clone https://github.com/hugoroy/exegetesDoc.git
  13. git clone https://github.com/sniperovitch/mirrorpad.git
  14. cd mirrorpad
  15. ./build.sh
  16. cd "$MYHOME"