Skip to content

Instantly share code, notes, and snippets.

@45deg
Created May 31, 2015 16:27
Show Gist options
  • Save 45deg/90f8493399ee3cd240b7 to your computer and use it in GitHub Desktop.
Save 45deg/90f8493399ee3cd240b7 to your computer and use it in GitHub Desktop.
Vagrant-TeXLive
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, inline: <<-SHELL
if [ ! -f ~/.installed ]
then
sudo apt-get update
sudo apt-get -y install texlive
sudo apt-get -y install texlive-lang-cjk
sudo apt-get -y install dvipsk-ja
sudo apt-get -y install gv
sudo apt-get -y install texlive-fonts-recommended texlive-fonts-extra
touch ~/.installed
fi
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment