blob: cef0c0aec44c9ed5d3b89d49aed1e4865b002053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Guillaume Meunier <guillaume.meunier@centraliens.net>
pkgname=wivrn-server
pkgver=0.21.1
pkgrel=1
pkgdesc="A wireless Monado-based OpenXR runtime for standalone headsets."
arch=(x86_64)
url="https://github.com/WiVRn/WiVRn"
license=("GPL-3.0-only")
depends=(
"avahi"
"ffmpeg"
"gcc-libs"
"glibc"
"libbsd"
"libgl"
"libpipewire"
"libpulse"
"libx11"
"libxcb"
"systemd-libs"
"vulkan-icd-loader"
"x264"
"boost-libs"
)
makedepends=(
"cmake"
"eigen"
"nlohmann-json"
"cli11"
"glib2-devel"
"boost"
)
optdepends=(
"cuda: NVIDIA hardware encoding"
)
provides=("openxr-runtime")
source=("$pkgname-$pkgver.tar.gz::https://github.com/WiVRn/WiVRn/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('5fe84979e798812565c59447fc39109c955638c7889fe560a3d71ae1904f653c')
install=$pkgname.install
build() {
cd "WiVRn-$pkgver"
cmake -B build-server . \
-DGIT_DESC=v${pkgver} \
-DWIVRN_BUILD_CLIENT=OFF \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DWIVRN_USE_VAAPI=ON \
-DWIVRN_USE_X264=ON \
-DWIVRN_USE_NVENC=ON \
-Wno-dev
cmake --build build-server
}
package() {
cd "WiVRn-$pkgver"
DESTDIR="$pkgdir" cmake --install build-server
}
|