Date: Thursday, June 1, 2017 @ 14:25:46 Author: archange Revision: 232285
Initial import of libva-utils from the AUR Added: libva-utils/ libva-utils/repos/ libva-utils/trunk/ libva-utils/trunk/PKGBUILD ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: libva-utils/trunk/PKGBUILD =================================================================== --- libva-utils/trunk/PKGBUILD (rev 0) +++ libva-utils/trunk/PKGBUILD 2017-06-01 14:25:46 UTC (rev 232285) @@ -0,0 +1,29 @@ +# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) <[email protected]> +# Contributor: Sean V Kelley <[email protected]> + +pkgname=libva-utils +pkgver=1.8.2 +pkgrel=1 +pkgdesc="Intel VA-API Media Applications and Scripts for libva" +arch=('i686' 'x86_64') +url="https://github.com/01org/libva-utils" +license=('custom') +depends=('libva') +makedepends=('mesa') +source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz") +sha256sums=('ccae885d9f3b4511081d287816c56bd7dda98e5947e6254ebe60d08e86c6ba4a') + +build() { + cd ${pkgname}-${pkgver} + ./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="$pkgdir" install + install -Dm644 COPYING "$pkgdir"/usr/share/licenses/${pkgname}/COPYING +}
