blob: 6e67eb113e511fbd9176fa3126cf11799e78ecd4 (
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
|
# Maintainer: dec05eba <dec05eba@protonmail.com>
pkgname=vr-video-player-git
pkgver=r76.02f7b01
pkgrel=1
pkgdesc='A virtual reality video player for x11 on Linux'
arch=('x86_64')
url="https://git.dec05eba.com/vr-video-player"
license=('BSD')
depends=('glm' 'glew' 'sdl2' 'openvr' 'libx11' 'libxcomposite' 'libxfixes')
provides=('vr-video-player')
conflicts=('vr-video-player')
source=("${pkgname}-${pkgver}.tar.gz::https://dec05eba.com/snapshot/vr-video-player.git.r76.02f7b01.tar.gz")
sha512sums=('8e5e56c070ee59213e5dba0e064a28eb3dcccdb266f0a89fd0f748e74cf62bdb1a69861ff298c5bf1ee89841a8d1dea09c61543a04b0db7dae727ae796f23707')
build() {
cd "$srcdir"
./build.sh
}
package() {
cd "$srcdir"
install -Dm755 "vr-video-player" "$pkgdir/usr/bin/vr-video-player"
install -Dm644 config/hellovr_actions.json "$pkgdir/usr/share/vr-video-player/hellovr_actions.json"
install -Dm644 config/hellovr_bindings_generic.json "$pkgdir/usr/share/vr-video-player/hellovr_bindings_generic.json"
install -Dm644 config/hellovr_bindings_vive_controller.json "$pkgdir/usr/share/vr-video-player/hellovr_bindings_vive_controller.json"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/vr-video-player/LICENSE"
}
|