adopted from aur3

This commit is contained in:
jose1711 2016-01-01 22:21:59 +01:00
commit b6c950d0ad
2 changed files with 54 additions and 0 deletions

22
.SRCINFO Normal file
View file

@ -0,0 +1,22 @@
# Generated by mksrcinfo v8
# Fri Jan 1 21:21:31 UTC 2016
pkgbase = bino
pkgdesc = 3D video player with multi-display support.
pkgver = 1.6.1
pkgrel = 3
url = http://bino3d.org/
arch = i686
arch = x86_64
license = GPL3
depends = ffmpeg
depends = freealut
depends = freeglut
depends = glew
depends = libass
depends = qt5-base
optdepends = lirc: for infrared remote control
source = http://download.savannah.gnu.org/releases-noredirect/bino/bino-1.6.1.tar.xz
md5sums = 59471d7eb3b6981a1e610f96a12ff47c
pkgname = bino

32
PKGBUILD Normal file
View file

@ -0,0 +1,32 @@
# Maintainer: Jose Riha <jose1711 gmail com>
# Contributor: archtux <antonio dot arias99999 at gmail dot com>
pkgname=bino
pkgver=1.6.1
pkgrel=3
pkgdesc="3D video player with multi-display support."
arch=('i686' 'x86_64')
url="http://bino3d.org/"
license=('GPL3')
depends=('ffmpeg' 'freealut' 'freeglut' 'glew' 'libass' 'qt5-base')
optdepends=('lirc: for infrared remote control')
source=(http://download.savannah.gnu.org/releases-noredirect/$pkgname/$pkgname-$pkgver.tar.xz)
md5sums=('59471d7eb3b6981a1e610f96a12ff47c')
prepare() {
cd $srcdir/$pkgname-$pkgver
sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure
./configure --prefix=/usr \
--with-qt-version=5 \
# --with-xnvctrl # Enable NVIDIA Quadro SDI output
}
build() {
cd $srcdir/$pkgname-$pkgver
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}