blob: b3e9855dff6a5596883903ad2bb8d81c8964f9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Alejandro Valdes <alejandrovaldes at live dot com>
pkgname=yuview
_pkgname=YUView
pkgver=2.13
pkgrel=1
pkgdesc="The Free and Open Source Cross Platform YUV Viewer with an advanced analytics toolset"
arch=('x86_64')
url="https://github.com/IENT/${_pkgname}"
license=('GPL3')
depends=('qt5-base'
'qt5-charts'
'desktop-file-utils'
'libde265')
provides=("$pkgname")
conflicts=("$pkgname" "$_pkgname")
source=("git+${url}.git#commit=a72b395f55f01fe162d549f4ab50222395e6cb3e"
'archlinux.patch')
noextract=()
md5sums=('SKIP'
'1e5c1cfc4e3979aec828df29e26774e6')
install="$pkgname.install"
prepare() {
cd "$srcdir/$_pkgname"
patch --forward --strip=1 --input="${srcdir}/archlinux.patch"
mkdir -p "$srcdir/build"
cd "$srcdir/build"
qmake -o Makefile ../$_pkgname/$_pkgname.pro -spec linux-g++
}
build() {
cd build
make
}
check() {
cd build
make -k check
}
package() {
cd build
make INSTALL_ROOT="$pkgdir" install
}
|