Skip to content

Instantly share code, notes, and snippets.

@tierra
Last active August 29, 2015 14:14
Show Gist options
  • Save tierra/c30797156b394036cd6e to your computer and use it in GitHub Desktop.
Save tierra/c30797156b394036cd6e to your computer and use it in GitHub Desktop.
wxWidgets Documentation Vagrant Box
# -*- 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