Skip to content

Commit

Permalink
Add vagrant files
Browse files Browse the repository at this point in the history
  • Loading branch information
pdesaulniers committed Dec 15, 2018
1 parent 153cedf commit d0b46c9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ CTestTestfile.cmake
*.cpp.o
*.so
/bin/
.vagrant
4 changes: 4 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, privileged: true, path: "provision.sh"
end
17 changes: 17 additions & 0 deletions provision.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
dpkg-reconfigure locales

apt-get update
apt-get install -y g++ pkg-config git libx11-dev libgl1-mesa-dev liblo-dev libjack-dev

#TODO:
#clone repo
#cd repo
#rm -r bin
#ln -s /vagrant/bin bin/
#./make_release.sh (etc)

0 comments on commit d0b46c9

Please sign in to comment.