Add basic Vagrant configuration

For non-linux developers this should somewhat simplify development with e.g.
valgrind and other useful tools.

Change-Id: I973ab7412ad9a61f0892c25c079ea3424208abd1
Reviewed-on: https://code.wireshark.org/review/9117
Reviewed-by: Evan Huus <eapache@gmail.com>
daniel/osmux
Evan Huus 2015-06-24 19:05:38 -07:00
parent d1a81df8c0
commit 5aaaa550fd
4 changed files with 43 additions and 0 deletions

1
.gitignore vendored
View File

@ -209,6 +209,7 @@ packaging/nsis/gtk-dll-manifest.nsh
# Misc #
########
.vagrant
*.swp
*~
.DS_Store

27
Vagrantfile vendored Normal file
View File

@ -0,0 +1,27 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Base box is Ubuntu 14.04
config.vm.box = "ubuntu/trusty64"
# Bump the default resources as building is expensive
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.cpus = 2
end
# Share the source directory into the VM as `/wireshark`
config.vm.synced_folder ".", "/wireshark"
# Permit X11 forwarding so running the graphical Wireshark works
config.ssh.forward_x11 = true
# Install and build the various things (including wireshark!)
config.vm.provision :shell, path: 'vagrant_provision.sh'
config.vm.provision :shell, path: 'vagrant_build.sh', privileged: false
end

7
vagrant_build.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
mkdir -p build
cd build
cmake /wireshark/
make -j2

8
vagrant_provision.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -e
apt-get update
apt-get build-dep -y wireshark
apt-get install -y cmake valgrind qt5-default \
libqt5multimedia5 libqt5multimediawidgets5 qtmultimedia5-dev \
qttools5-dev qttools5-dev-tools