Initial PKGBUILD

This commit is contained in:
RealStickman 2022-08-29 20:03:39 +02:00
commit 479e02e824
3 changed files with 53 additions and 0 deletions

17
.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = vivictpp
pkgdesc = An easy to use tool for subjective comparison of the visual quality of different encodings of the same video source.
pkgver = 0.2.0
pkgrel = 1
url = https://github.com/svt/vivictpp
arch = x86_64
license = GPL2
makedepends = meson
depends = ffmpeg
depends = sdl_image
depends = freetype2
provides = vivictpp
conflicts = vivictpp
source = https://github.com/svt/vivictpp/archive/refs/tags/v0.2.0.zip
sha256sums = 348b213245d0d29b71a600f7b75ea3f0c487836dfb423f954e0ac3cce3cbad58
pkgname = vivictpp

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# ignore everything
*
# except these files
!.gitignore
!PKGBUILD
!.SRCINFO
!app-update.yml

28
PKGBUILD Normal file
View File

@ -0,0 +1,28 @@
# Maintainer: RealStickman <mrc+aur@frm01.net>
pkgname=vivictpp
pkgdesc='An easy to use tool for subjective comparison of the visual quality of different encodings of the same video source.'
pkgver=0.2.0
# Uncomment for releases with hyphens
# _pkgver=$(echo "$pkgver" | tr '~' -)
pkgrel=1
arch=('x86_64')
url='https://github.com/svt/vivictpp'
license=('GPL2')
depends=('ffmpeg'
'sdl_image'
'freetype2')
makedepends=('meson')
provides=("${pkgname}")
conflicts=("${pkgname}")
source=("https://github.com/svt/vivictpp/archive/refs/tags/v${pkgver}.zip")
sha256sums=('348b213245d0d29b71a600f7b75ea3f0c487836dfb423f954e0ac3cce3cbad58')
build() {
meson --prefix=/usr --buildtype=plain "$srcdir/${pkgname}-${pkgver}" "builddir"
meson compile -C builddir
}
package() {
meson install -C builddir --destdir "$pkgdir"
}