2021-10-17 09:51:36 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
2022-06-14 00:35:20 +02:00
|
|
|
# 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
|
2024-06-09 17:47:01 +02:00
|
|
|
pkgver=2.2
|
2022-11-09 17:38:40 +01:00
|
|
|
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/'
|
2024-07-21 07:32:40 +02:00
|
|
|
license=('GPL-3.0-or-later')
|
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})
|
2024-06-09 17:47:01 +02:00
|
|
|
sha512sums=('73e6207db4a71673f88ebbd8999054acfc8f70a069fc74089976786082373d0eb7ae675786b1d3cf8907987267d9b1b50ddb05366b8b70f880c6898da765cd7b'
|
2022-11-09 17:38:40 +01:00
|
|
|
'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
|
|
|
|
|
2022-12-06 22:10:20 +01:00
|
|
|
cmake --build build
|
2016-01-01 22:21:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2022-12-06 22:10:20 +01:00
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
2016-01-01 22:21:59 +01:00
|
|
|
}
|