Package Details: wivrn-server 0.10.2-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/Meumeu/WiVRn
Licenses: GPL-3-only
Provides: openxr-runtime
Submitter: cmumme
Maintainer: cmumme
Last Packager: cmumme
Votes: 0
Popularity: 0.000000
First Submitted: 2024-01-13 01:01 (UTC)
Last Updated: 2024-01-13 01:01 (UTC)

Required by (0)

Sources (1)

Latest Comments

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!