Files
sview-aur/PKGBUILD
Pavel Pivovarov 39de20f4c8 Update PKGBUILD
2023-02-07 07:41:13 +00:00

34 lines
909 B
Bash

# Maintainer: Pavel "PivPav" Pivovarov <pavel at pivpav dot com>
_pkgname=sview
pkgname=$_pkgname-git
pkgver=20.08.r34.1f4deff
pkgrel=1
pkgdesc="Stereoscopic 3D video player with OpenGL UI"
arch=('i686' 'x86_64')
url="http://www.sview.ru/en"
license=('custom')
depends=('libconfig' 'ffmpeg' 'freetype2' 'gtk2' 'libgl' 'libx11' 'libxext' 'libxpm' 'openal' 'ttf-droid' 'gnu-free-fonts')
optdepends=('ttf-nanum')
makedepends=('git')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=("git+https://github.com/gkv311/$_pkgname.git")
md5sums=('SKIP')
build() {
cd $_pkgname
git checkout 1f4deff2a204e41ce85eb4eac710f2cf60ee1476
unset ANDROID_NDK
msg2 "Starting make..."
make -j1 all
}
package() {
cd $_pkgname
msg2 "Starting make install..."
make DESTDIR="$pkgdir" install
mkdir -p $pkgdir/usr/share/licenses/$_pkgname/
cp docs/LICENSE.md $pkgdir/usr/share/licenses/$_pkgname/
}