Package Details: wivrn-server 0.24.1-1

Git Clone URL: https://aur.archlinux.org/wivrn-server.git (read-only, click to copy)
Package Base: wivrn-server
Description: A wireless Monado-based OpenXR runtime for standalone headsets.
Upstream URL: https://github.com/WiVRn/WiVRn
Licenses: GPL-3.0-or-later
Provides: openxr-runtime
Submitter: cmumme
Maintainer: gmeunier
Last Packager: gmeunier
Votes: 3
Popularity: 0.37
First Submitted: 2024-01-13 01:01 (UTC)
Last Updated: 2025-04-10 19:46 (UTC)

Latest Comments

AngelBePro commented on 2025-03-17 19:16 (UTC)

As of right now, freedesktop is migrating their servers. Commenting this so everyone knows that as of right now monado is not avaible. On their website it says the outage will be until 2025-03-22.

AquilaIrreale commented on 2024-11-04 08:26 (UTC)

@gmeunier you have a PKGBUILD/.SRCINFO mismatch that's signalling false updates to AUR helpers, the pkgrels in the two files do not agree. Also .SRCINFO lists a sha256sum that PKGBUILD doesn't have. Are you editing the .SRCINFO file by hand? If that's the case I would suggest (re)generating it with makepkg --printsrcinfo > .SRCINFO instead each time PKGBUILD is updated as per the official guide on the wiki

hwkiller commented on 2024-10-17 18:43 (UTC)

I think the makedeps needs updated:

1) glib2-devel is needed for gdbus-codegen 2) ninja is needed for building

dreieck commented on 2024-02-09 11:37 (UTC)

/usr/share/openxr/1/openxr_wivrn.json contains "library_path": "../../../lib/libopenxr_wivrn.so".

Sure that a relative path is correct here, and not an absolute path would be better?

Regards!

dreieck commented on 2024-02-09 11:30 (UTC) (edited on 2024-02-09 11:33 (UTC) by dreieck)

prepare() has some issues if cuda is not installed:

==> Starting prepare()...
error: package 'cuda' was not found
/tmp/makepkg/yay/wivrn-server/PKGBUILD: line 32: =: command not found
ON

Please use the following:

    if pacman -Qq cuda > /dev/null 2>&1; then
      _use_nvenc="ON"
    else
      _use_nvenc="OFF"
    fi
    echo "Build with NVENC: $_use_nvenc"

And are you sure that nvenc is part of cuda and not an extra package? (There is nvenc as a separate package in the AUR.)

Regards and thanks for maintaining!