Gcenx/wine-on-mac

Installing a version of Wine other than 5.0

yllekz opened this issue · 2 comments

Hello, pardon me if this is a stupid question, but when I install Wine on macOS using this repository's instructions, it installs an old version of Wine. How can I specify to install the latest version instead?

Gcenx commented

As explained in the README

wine-on-mac/README.md

Lines 25 to 36 in 1761a7e

Winehq is currently not providing recent packages for macOS so I decided to upload my own builds.
```
brew tap gcenx/wine
brew install --cask --no-quarantine gcenx-wine-staging
```
This command will add my brew tap and the second command will install my custom cask of `Wine Staging`
#### The tap contains the following
- `gcenx-wine-stable`
- `gcenx-wine-devel`
- `gcenx-wine-staging`
- `wine-crossover`

Doing this will allow installing the most recent wine packages I provide this will only function on macOS High Sierra and later.

If you require wine for OS X 10.8 to macOS 10.12 you’ll need to compile from source using my Macports overlay.

Beautiful, that worked. Before I was only running one of those components (wine-crossover) which explains why it wasn't grabbing the latest. Thanks!