Last active
May 3, 2016 23:15
-
-
Save jaredallard/787459c1f593757b73d2dca79a488011 to your computer and use it in GitHub Desktop.
EEII on Linux!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# A minimal untested script to install | |
# Empire Earth II on Linux (note: it's just the wine ENV) | |
export WINEARCH=win32 | |
export WINEPREFIX=~/.wineEEII | |
echo "installing wine and other libraries" | |
sudo pacman -S wine winetricks wine_gecko wine-mono lib32-mpg123 lib32-gstreamer lib32-gst-plugins-good lib32-gst-plugins-base | |
echo "using $(wine --version)" | |
# instance wine. | |
wineboot -u | |
# wrap winetricks | |
echo "executing winetricks" | |
winetricks dotnet40 dotnet30 dotnet20 vcrun2005 vcrun2008 vcrun2010 vcrun2012 directx9 msxml3 corefonts | |
echo "Please make sure you add this to your ~/.bashrc or execute before running wine!" | |
echo "export WINEARCH=win32" | |
echo "export WINEPREFIX=~/.wineEEII" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment