blob: 376c9ebc0a6239ca9963b0f9be2d839e69b5aac0 (
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
60
61
62
63
64
|
basename=libsurvive
pkgname=$basename-git
pkgver=2216.5319743
pkgrel=1
pkgdesc="Open-Source tool for working with lighthouse-based tracking data, including support for the HTC Vive, Vive Pro and Valve Index."
arch=(x86_64 i686)
url="https://github.com/cntools/libsurvive"
license=(MIT)
depends=("hidapi" "xr-hardware" "libpcap" "zlib" "libusb" "eigen") # "lapacke" "cblas" "blas"
conflicts=($basename)
provides=($basename)
makedepends=("git" "cmake" "ninja")
source=($basename::"git+https://github.com/cntools/libsurvive.git"
cnkalman.git::"git+https://github.com/cntools/cnkalman.git"
cnmatrix.git::"git+https://github.com/cntools/cnmatrix.git")
sha256sums=('SKIP'
'SKIP'
'SKIP')
pkgver() {
cd $basename
hash=$(git log --pretty=format:'%h' -n 1)
revision=$(git rev-list --count HEAD)
echo $revision.$hash
}
prepare() {
cd $basename
# https://bugs.archlinux.org/task/76255
git submodule set-url libs/cnkalman "$srcdir/cnkalman.git"
# avoided security issue by setting submodule url
git -c protocol.file.allow=always submodule update --init
cd libs/cnkalman
git submodule set-url libs/cnmatrix "$srcdir/cnmatrix.git"
# avoided security issue by setting submodule url
git -c protocol.file.allow=always submodule update --init
cd "$srcdir"/$basename
sed "s!cnmatrix/matrix.h!cnmatrix/cn_matrix.h!g" -i tools/vive_mouse/vive_mouse.c
git revert --no-commit 84423daf44b430f8ec12e7650f46027070d7df73
}
build() {
cd $basename
rm -rf build
# there is an openblas issue that causes high cpu usage unless OPENBLAS_NUM_THREADS=0 is set.
# works with lapack reference blas but its use is discouraged as it's not tuned.
# -DUSE_EIGEN=ON disables the use of blas in favor of libsurvive's own single threaded matrix math using eigen.
# This will probably require slightly more cpu power than a tuned blas implementation.
# If running on a weak CPU, consider installing a blas implementation and using -DUSE_EIGEN=OFF.
cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DUSE_EIGEN=ON -DCMAKE_BUILD_TYPE=Release
ninja -C build
}
package() {
cd $basename
DESTDIR="$pkgdir" ninja -C build install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|