Last active
August 29, 2015 14:14
-
-
Save tierra/c30797156b394036cd6e to your computer and use it in GitHub Desktop.
wxWidgets Documentation Vagrant Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
$sudo_script = <<SUDOSCRIPT | |
apt-get update | |
apt-get -y install doxygen graphviz | |
apt-get -y --no-install-recommends install texlive-latex-extra texlive-fonts-recommended | |
SUDOSCRIPT | |
Vagrant.configure("2") do |config| | |
config.vm.box = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box" | |
config.vm.provision "shell", :keep_color => true, :inline => $sudo_script | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment