https://www.youtube.com/watch?v=kCMmyk9wvso

Required Downloads
https://www.mikrotik.com/download
https://www.xquartz.org * No longer needed with newer versions of WinBottler *
https://winebottler.kronenberg.org/downloads
Download WinBox EXE from MikroTik
Download & Install XQuartz
Download & Install Winebottler
Run WineBottler
Choose Advanced at top to create prefix
Navigate to winbox.exe downloaded file and select it
Choose Copy file to App Bundle
Deselect Include Mono & Gecko
Hit Install
Give WinBox a name
Drag WinBox to your Applications Folder
Optionally add to dock
See video for 64bit fix
#find wine, try in Bundle, ~/Applications, /Applications, Spotlight
if [ -f "$BUNDLERESOURCEPATH/Wine.bundle/Contents/Resources/bin/wine64" ]; then
export WINEUSRPATH="$BUNDLERESOURCEPATH/Wine.bundle/Contents/Resources"
elif [ -f "$HOME/Applications/Wine.app/Contents/Resources/bin/wine64" ]; then
export WINEUSRPATH="$HOME/Applications/Wine.app/Contents/Resources"
elif [ -f "/Applications/Wine.app/Contents/Resources/bin/wine64" ]; then
export WINEUSRPATH="/Applications/Wine.app/Contents/Resources"
elif [ -f "$(mdfind 'kMDItemCFBundleIdentifier == org.kronenberg.Wine' | grep -m 1 'Wine.app')/Contents/Resources/bin/wine64" ]; then
export WINEUSRPATH="$(mdfind 'kMDItemCFBundleIdentifier == org.kronenberg.Wine' | grep -m 1 'Wine.app')/Contents/Resources"
else
echo "Wine not found!"
exit 1
fi
export WINEARCH=win64