http://bugs.winehq.org/show_bug.cgi?id=59000
mata sutupud@yahoo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |sutupud@yahoo.com
--- Comment #4 from mata sutupud@yahoo.com --- wine-git in aur seems to have been last updated in june and point to wine 10.11, so that won't help much.
What I prefer to do is to just clone the official arch package repor and rebuild that with patches, e.g.:
git clone https://gitlab.archlinux.org/archlinux/packaging/packages/wine.git
then apply the patches in PKGBUILD, by downloading and applying them inside prepare():
prepare() { # Get rid of old build dirs rm -rf $pkgname-64-build mkdir $pkgname-64-build
cd wine curl https://gitlab.winehq.org/wine/wine/-/merge_requests/9494.patch | git apply cd .. }
Cleaner would be to add the patches to `souce`, but for me this works well enough as quick fix. Also, changing `pkgrel` to something like `pkgrel=1.1` shouldn't hurt, so that the version is greater than official arch package but will not prevent future updates. Then build using `makepkg` and install using `pacman -U ...`. Oh, and changing `/etc/makepkg.conf` so that it doesn'T use `MAKEFLAGS="-j2"` but something closer to your CPU count can help the build being much faster...