Reorganised.

This commit is contained in:
Daniel Buckmaster 2015-02-01 22:01:12 +11:00
parent db06ffec7d
commit 05fba1f110
2 changed files with 7 additions and 11 deletions

View file

@ -19,7 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# config.vm.network 'forwarded_port', guest: 80, host: 8080
# More info at http://fgrehm.viewdocs.io/vagrant-cachier/usage
if Vagrant.has_plugin?("vagrant-cachier")
if Vagrant.has_plugin?('vagrant-cachier')
config.cache.scope = :box
end
end

View file

@ -5,22 +5,18 @@ apt-get update -y
apt-get install -y --no-install-recommends ubuntu-desktop
# Install software for development.
apt-get install \
terminal \
git \
-y
# Install Torque-specific binaries.
sudo apt-get install \
git \
terminal \
build-essential \
nasm \
cmake \
cmake-qt-gui \
xorg-dev \
ninja-build \
gcc-multilib \
g++-multilib \
cmake \
cmake-qt-gui \
--ignore-missing -y
-y
# Install libraries.
sudo apt-get install \
@ -35,4 +31,4 @@ sudo apt-get install \
libxi-dev \
libxrandr-dev \
libxss-dev \
--ignore-missing -y
-y