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
|
2021-12-24 11:45:22 +01:00
|
|
|
pkgver=1.6.8
|
2022-06-15 00:37:21 +02:00
|
|
|
pkgrel=4
|
2017-08-13 02:12:01 +02:00
|
|
|
pkgdesc='3D video player with multi-display support'
|
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-06-14 17:06:02 +02:00
|
|
|
depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base')
|
2017-08-13 02:12:01 +02:00
|
|
|
optdepends=('lirc: infrared remote control')
|
2022-06-15 00:37:21 +02:00
|
|
|
source=(https://bino3d.org/releases/${pkgname}-${pkgver}.tar.xz{,.sig}
|
2022-06-14 00:35:20 +02:00
|
|
|
ffmpeg4.4.patch)
|
2021-12-24 11:45:22 +01:00
|
|
|
sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc'
|
2022-06-14 00:35:20 +02:00
|
|
|
'SKIP'
|
2022-06-15 00:37:21 +02:00
|
|
|
'f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639')
|
2018-01-29 13:06:58 +01:00
|
|
|
validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34')
|
2016-01-01 22:21:59 +01:00
|
|
|
|
2022-06-14 00:35:20 +02:00
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
patch -Np1 -i '../ffmpeg4.4.patch'
|
|
|
|
}
|
|
|
|
|
2016-01-01 22:21:59 +01:00
|
|
|
build() {
|
2017-08-13 02:12:01 +02:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2021-10-17 09:51:36 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-qt-version=5 \
|
|
|
|
#--with-xnvctrl # Enable NVIDIA Quadro SDI output
|
2017-08-13 02:12:01 +02:00
|
|
|
make
|
2016-01-01 22:21:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2017-08-13 02:12:01 +02:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2016-01-01 22:21:59 +01:00
|
|
|
}
|