Package Details: wineasio 1.2.0-7

Git Clone URL: https://aur.archlinux.org/wineasio.git (read-only, click to copy)
Package Base: wineasio
Description: ASIO driver implementation for Wine
Upstream URL: https://github.com/wineasio/wineasio
Keywords: asio audio jack wine
Licenses: GPL-2.0-or-later, LGPL-2.1-or-later
Submitter: shinlun
Maintainer: Kazel
Last Packager: Kazel
Votes: 57
Popularity: 0.060817
First Submitted: 2007-05-27 07:28 (UTC)
Last Updated: 2024-04-06 09:01 (UTC)

Pinned Comments

falkTX commented on 2022-02-17 22:59 (UTC) (edited on 2022-02-17 22:59 (UTC) by falkTX)

Update for wineasio-1.1

Your user must belong to the realtime group in order to use wineasio.
This can be done with sudo usermod -aG realtime $(whoami)

For registering wineasio as an ASIO driver:

  • For 32bit, run: regsvr32 /usr/lib32/wine/i386-windows/wineasio.dll
  • For 64bit, run: wine64 regsvr32 /usr/lib/wine/x86_64-windows/wineasio.dll

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 14 Next › Last »

falkTX commented on 2022-02-18 16:38 (UTC)

v1.1.0 has been tagged
https://github.com/wineasio/wineasio/releases/tag/v1.1.0

please update when possible.
the files to install are different now, so a little care is needed there.
README file has details.

falkTX commented on 2022-02-17 22:59 (UTC) (edited on 2022-02-17 22:59 (UTC) by falkTX)

Update for wineasio-1.1

Your user must belong to the realtime group in order to use wineasio.
This can be done with sudo usermod -aG realtime $(whoami)

For registering wineasio as an ASIO driver:

  • For 32bit, run: regsvr32 /usr/lib32/wine/i386-windows/wineasio.dll
  • For 64bit, run: wine64 regsvr32 /usr/lib/wine/x86_64-windows/wineasio.dll

mtstickney commented on 2022-01-28 20:38 (UTC)

As a note, as of the next release of wineasio (1.1.0), upstream will be building the stub dlls needed by wine >6.5, so the winebuild calls in my patch below will be unnecessary at that point (we do still need to pull them in and use the correct library paths, though).

mtstickney commented on 2022-01-19 23:44 (UTC)

The following patch builds the stub dll needed by newer versions of wine, and also updates the .so and .dll install paths for the new directories used by newer versions of wine.

diff --git a/PKGBUILD b/PKGBUILD
index a09020b..66e16f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -27,18 +27,29 @@ sha256sums=(
 )
 build() {
   cd "$pkgname-$pkgver"
+
   make 32
+  cd build32
+  winebuild -m32 --dll --fake-module -E ../wineasio.dll.spec asio.c.o main.c.o regsvr.c.o > $pkgname.dll
+  cd ..
+
   if [[ "$CARCH" == x86_64 ]]; then
     make 64
+    cd build64
+    winebuild -m64 --dll --fake-module -E ../wineasio.dll.spec asio.c.o main.c.o regsvr.c.o > $pkgname.dll
+    cd ..
   fi
 }
 package() {
   cd "$pkgname-$pkgver"
   if [[ "$CARCH" == x86_64 ]]; then
-    install -D -m755 build32/"$pkgname".dll.so "$pkgdir"/usr/lib32/wine/"$pkgname".dll.so
-    install -D -m755 build64/"$pkgname".dll.so "$pkgdir"/usr/lib/wine/"$pkgname".dll.so
+    install -D -m755 build32/"$pkgname".dll.so "$pkgdir"/usr/lib32/wine/i386-unix/"$pkgname".dll.so
+    install -D -m644 build32/"$pkgname".dll "$pkgdir"/usr/lib32/wine/i386-windows/"$pkgname".dll
+    install -D -m755 build64/"$pkgname".dll.so "$pkgdir"/usr/lib/wine/x86_64-unix/"$pkgname".dll.so
+    install -D -m644 build64/"$pkgname".dll "$pkgdir"/usr/lib/wine/x86_64-windows/"$pkgname".dll
   else
-    install -D -m755 build32/"$pkgname".dll.so "$pkgdir"/usr/lib32/wine/"$pkgname".dll.so
+    install -D -m755 build32/"$pkgname".dll.so "$pkgdir"/usr/lib32/wine/i386-unix/"$pkgname".dll.so
+    install -D -m644 build32/"$pkgname".dll "$pkgdir"/usr/lib32/wine/i386-windows/"$pkgname".dll
   fi
   install -D -m644 README.md "$pkgdir"/usr/share/"$pkgname"/README.md
 }
-- 
2.34.1

Kazel commented on 2021-10-29 12:20 (UTC)

@DonJaime wineasio-git works because they build a needed fake dll which this package doesn't. so until something changes this package is broken.

DonJaime commented on 2021-10-28 10:25 (UTC)

wineasio is currently giving me regsvr32: Failed to load DLL 'wineasio.dll'

wineasio-git (version 1.0.0.r2....) works. Not sure if this package is outdated or something else is going wrong.

anoa commented on 2021-10-06 11:24 (UTC) (edited on 2021-10-06 11:24 (UTC) by anoa)

If you are getting:

regsvr32: Failed to load DLL 'wineasio.dll'

try first updating your wine configuration with wineboot -u.

You can also tell regsvr32 which directory to look for wineasio.dll.so in with the WINEDLLPATH environment variable. For example:

WINEPREFIX=~/.wine WINEDLLPATH=/usr/lib64/wine wine64 regsvr32 wineasio.dll

chuckdaniels commented on 2020-07-18 17:05 (UTC) (edited on 2020-07-18 17:07 (UTC) by chuckdaniels)

You need to add your user to realtime group to use wineasio.

You also need to register wineasio in you Wine prefix:

  • For 32bit, run: regsvr32 wineasio.dll

  • For 64bit, run: wine64 regsvr32 wineasio.dll