| author | Bartłomiej Piotrowski
<bpiotrowski@archlinux.org> 2017-04-03 18:53:12 UTC |
| committer | Bartłomiej Piotrowski
<bpiotrowski@archlinux.org> 2017-04-03 18:53:12 UTC |
| parent | 7eb3a51abac5c1266fefffc223de333e31b7a33e |
| PKGBUILD | +11 | -18 |
diff --git a/PKGBUILD b/PKGBUILD index 17fd0cb..d2b066c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,26 +1,19 @@ -# Maintainer: Ionut Biru <ibiru@archlinux.org> # Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> +# Contributor: Ionut Biru <ibiru@archlinux.org> pkgname=libva -pkgver=1.7.3 -pkgrel=2 +pkgver=1.8.0 +pkgrel=1 pkgdesc='Video Acceleration (VA) API for Linux' -arch=('i686' 'x86_64') -url='http://freedesktop.org/wiki/Software/vaapi' -license=('MIT') -depends=('libgl' 'libdrm' 'libxfixes') -makedepends=('mesa') +arch=(i686 x86_64) +url='https://01.org/linuxmedia/vaapi' +license=(MIT) +depends=(libgl libdrm libxfixes) +makedepends=(mesa) optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' 'libva-intel-driver: backend for Intel cards') -source=(https://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2 - not-finding-wl-drm-interface-with-libglvnd.patch) -sha1sums=('18e46f3d5a0e971eb0ec9fe14bc021e69eb13fb8' - 'b6f28238cc3c93f727d44198d9b303379b74fab1') - -prepare() { - cd $pkgname-$pkgver - patch -Np1 -i ../not-finding-wl-drm-interface-with-libglvnd.patch -} +source=(https://github.com/01org/libva/releases/download/$pkgver/libva-${pkgver}.tar.bz2) +sha256sums=('eb92f3dcbe3981df3575348377263b31361113c77b2c3745f23174d1f562d658') build() { cd $pkgname-$pkgver @@ -31,5 +24,5 @@ build() { package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" }