Package Details: wine-asahi-git 10.16-1

Git Clone URL: https://aur.archlinux.org/wine-asahi-git.git (read-only, click to copy)
Package Base: wine-asahi-git
Description: Wine with ARM64EC support for Asahi Linux (16k pages)
Upstream URL: https://www.winehq.org/
Licenses: LGPL-2.1-or-later
Conflicts: wine, wine-arm64ec-git
Provides: wine, wine-arm64ec-git, wine-wow64
Submitter: thephoenix
Maintainer: thephoenix
Last Packager: thephoenix
Votes: 0
Popularity: 0.000000
First Submitted: 2025-10-15 07:38 (UTC)
Last Updated: 2025-10-15 07:38 (UTC)

Required by (19)

Sources (3)

Latest Comments

ArchieMeng commented on 2026-01-08 13:27 (UTC)

I made a patch that can make this PKGBUILD building from git repo as what "-git" package should be.

From 8cfe70a98854b8fce94c57131e167d6faccce971 Mon Sep 17 00:00:00 2001
From: ArchieMeng <archiemeng@protonmail.com>
Date: Thu, 8 Jan 2026 21:21:52 +0800
Subject: [PATCH] convert it to a real -git pacakge

---
 PKGBUILD | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index 699ba7a..4bf8560 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
 # Maintainer: Your Name <your.email@example.com>
 pkgname=wine-asahi-git
-pkgver=10.16
+pkgver=11.0.rc4.18.g97033f3faa3
 pkgrel=1
 pkgdesc="Wine with ARM64EC support for Asahi Linux (16k pages)"
 arch=('aarch64')
@@ -102,8 +102,8 @@ options=('staticlibs' '!lto')
 install=wine-asahi.install

 source=(
-    "wine::git+https://gitlab.winehq.org/wine/wine.git#tag=wine-10.16"
-    "wine-staging::git+https://gitlab.winehq.org/wine/wine-staging.git#tag=v10.16"
+    "wine::git+https://gitlab.winehq.org/wine/wine.git"
+    "wine-staging::git+https://gitlab.winehq.org/wine/wine-staging.git"
     "2025.08.22_bylaws-wine_upstream-arm64ec_hack_v2.patch"
 )
 sha256sums=('SKIP'
@@ -118,6 +118,9 @@ pkgver() {
 prepare() {
     cd "$srcdir/wine"

+    # Clean repo state for patching
+    git clean -fdx
+    git reset --hard HEAD
     # Apply wine-staging patches
     "$srcdir/wine-staging/staging/patchinstall.py" DESTDIR="$PWD" --all -W server-Stored_ACLs

-- 
2.52.0

ArchieMeng commented on 2026-01-06 13:59 (UTC)

I guess @NoaHimesaka missed the muvm step. It will often stack overflow if it is not running under muvm VM. My typical way is to start a muvm tty and run Windows binaries inside it.

muvm -ti -- bash

You can refer to https://docs.fedoraproject.org/en-US/fedora-asahi-remix/x86-support/ for more information.

NoaHimesaka commented on 2025-10-30 03:28 (UTC)

Seems to always stack overflow whenever I try to launch anything win64. (ARM64EC) win32 (WoW64) works okay (but still buggy) though.