Skip to content
Snippets Groups Projects
build_as_vagrant.sh 883 B
#!/bin/bash
set -e
set -x

export DISPLAY=:0.0
export WINEARCH="win32"
export WINEPREFIX="/home/vagrant/.wine"

cd /home/vagrant

# Set up framebuffer
Xvfb :0 -screen 0 1024x768x16 &
export DISPLAY=:0.0

# Prepare WINE folder hierarchy
wine start.exe || true
ln -s /vagrant /home/vagrant/.wine/drive_c/vagrant

# Install Tibbo tools
mkdir -p "/home/vagrant/.wine/drive_c/Program Files/Tibbo"
if [ -f "/wynurz-utils/tide-tibbo-lite-5.1.3-win32.zip" ]; then
    unzip /wynurz-utils/tide-tibbo-lite-5.1.3-win32.zip -d "/home/vagrant/.wine/drive_c/Program Files/Tibbo"
else
    wget http://dev.dms-serwis.com.pl/misc/tide-tibbo-lite-5.1.3-win32.zip -O /tmp/tibbo.zip
    unzip /tmp/tibbo.zip -d "/home/vagrant/.wine/drive_c/Program Files/Tibbo"
fi

# WINE extensions - max 15 minutes!
cd /home/vagrant/.wine/drive_c
winetricks corefonts vcrun6 &

sleep 900
kill -9 %2 || true
kill -9 %1