I can confirm this works!
Hey, I tried doing this, and it says as I try to install the program I need XQuartz 2.7.7 or higher. My Wine works properly with other games, and I didn't see anybody else mention XQuartz. What is that?
First, download wine-staging from here:
You must be registered to see the links
It will install "Wine Staging.app" into your applications folder. Run that, and it will open a terminal window. cd to the directory that BB isn installed in, then type "wine BigBrother.exe".
Thanks,
@rilakk !
Edit:
I've written a shell script to launch bb directly. It assumes you have Wine Staging.app in the same folder as BigBrother.exe. If you don't, change the path on the last line.
<path to BB> is the full path to the directory that contains BigBrother.exe (or relative to your home directory).
launch Terminal
cd to the directory you want your script in
cat << EOF >> bb
#!/bin/sh
cd <path to BB>
WINEDEBUG=-all ./Wine\ Staging.app/Contents/Resources/wine/bin/wine BigBrother.exe > /dev/null
EOF
chmod 755 bb
Now when you double click on bb, it will launch Terminal and fire up BB!
If this doesn't work, it's most likely a path issue. Double check that <path to BB> and the path to Wine Staging.app is correct.