summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Haag2017-03-10 04:00:51 +0100
committerChristoph Haag2017-03-10 04:00:51 +0100
commit22b7e4986c5b054e66bef266f6e5ab2855dc4e11 (patch)
tree520f9eead78360a3e3eb74f8bf3608288795b9a9
parent3f06071d7c83364bc46573be6a6812dc11261b7c (diff)
downloadaur-22b7e4986c5b054e66bef266f6e5ab2855dc4e11.tar.gz
use valve's binary distribution of libopenvr_api
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 076e6210cd4b..4dd86073a5da 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = openvr-git
pkgdesc = API and runtime that allows access to VR hardware from multiple vendors. Contains API and samples. The runtime is under SteamVR in Tools on Steam. Note: There's no compositor for linux, so try with hellovr -nocompositor
pkgver = 43.7fa6470
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ValveSoftware/openvr
arch = x86_64
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index 07d43d167aa0..e0697ebe3d15 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=openvr-git
pkgver=43.7fa6470
-pkgrel=1
+pkgrel=2
pkgdesc="API and runtime that allows access to VR hardware from multiple vendors. Contains API and samples. The runtime is under SteamVR in Tools on Steam. Note: There's no compositor for linux, so try with hellovr -nocompositor"
arch=('x86_64')
url="https://github.com/ValveSoftware/openvr"
@@ -24,7 +24,6 @@ pkgver() {
prepare() {
cd "$srcdir/openvr"
- # Patch for https://github.com/ValveSoftware/openvr/issues/315
}
build() {
@@ -35,8 +34,10 @@ build() {
cmake -DBUILD_SHARED=0 -DCMAKE_INSTALL_PREFIX=/usr/ -DCMAKE_BUILD_TYPE=Release .
make
- cmake -DBUILD_SHARED=1 -DCMAKE_INSTALL_PREFIX=/usr/ -DCMAKE_BUILD_TYPE=Release .
- make
+ # Valve's build of libopenvr_api.so contains symbols that have no source code available
+ # See: https://github.com/ValveSoftware/openvr/issues/425
+ #cmake -DBUILD_SHARED=1 -DCMAKE_INSTALL_PREFIX=/usr/ -DCMAKE_BUILD_TYPE=Release .
+ #make
cd samples
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/ -Wno-dev .