arch-packages/bino/PKGBUILD

32 lines
965 B
Bash
Raw Normal View History

# Maintainer: Manuel Hüsers <aur@huesers.de>
# Contributor: gruenfron <https://aur.archlinux.org/account/gruenfron>
2017-08-13 02:12:01 +02:00
# Contributor: Jose Riha <jose1711 gmail com>
2016-01-01 22:21:59 +01:00
# Contributor: archtux <antonio dot arias99999 at gmail dot com>
pkgname=bino
2022-11-09 17:38:40 +01:00
pkgver=2.0
pkgrel=1
2022-11-09 18:09:58 +01:00
pkgdesc='A video player with focus on 3D and Virtual Reality'
2021-12-24 11:45:22 +01:00
arch=('x86_64')
2017-08-13 02:12:01 +02:00
url='https://bino3d.org/'
2016-01-01 22:21:59 +01:00
license=('GPL3')
2022-11-09 17:38:40 +01:00
depends=('qt6-multimedia' 'qt6-svg' 'qvr')
makedepends=('cmake' 'qt6-tools')
source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig})
sha512sums=('5620c506f4de1a9aa7f21f0a23481c5174e7a6a47e6401a84d048dc87843249ef325e33ebc49790d405eb4697c3c571550b0e202f24e758c446ce8e4014f98b3'
'SKIP')
2018-01-29 13:06:58 +01:00
validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34')
2016-01-01 22:21:59 +01:00
build() {
2022-11-09 17:38:40 +01:00
cmake -B build -S "$pkgname-$pkgver" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF
cmake --build build
2016-01-01 22:21:59 +01:00
}
package() {
DESTDIR="$pkgdir" cmake --install build
2016-01-01 22:21:59 +01:00
}