Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Maintainer: DetMittens
- # Contributer: uth 2.0.0 update
- #
- # Supported Platforms Features
- # Haswell (HSW) vp8enc
- # Bay Trail M (BYT) vp8enc
- # Broadwell (BRW) vp9dec vp9enc
- # Braswell (BSW) vp8enc vp9dec
- #
- #
- # The libva-intel-driver package isn't compiled with support for loading this driver
- # so in order to use this driver's features with non hybrid codecs either
- # recompile libva-intel-driver with the --enable-hybrid-codec or install
- # the libva-intel-driver-hybrid package from the AUR
- pkgname=intel-hybrid-codec-driver
- _gitroot="git+https://github.com/01org/intel-hybrid-driver.git"
- _gitname=intel-hybrid-driver
- _pkgver=2.0.0
- pkgver=$_pkgver.r169.edead0c
- pkgrel=5
- pkgdesc='Libva support for partially hardware accelerated encode and decode on Haswell and newer'
- arch=('x86_64')
- install=${pkgname}.install
- url='https://01.org/linuxmedia/vaapi'
- license=('MIT')
- depends=('libva' 'libcmrt')
- optdepends=('libva-intel-driver-hybrid: To be able to use the full hw codecs with hybrid codecs')
- makedepends=('git')
- source=("$_gitname::$_gitroot"
- 'gcc10-fix.patch'
- 'vadriverinit-fix.patch'
- 'libva-2.0-abi-header-fix.patch')
- sha256sums=('SKIP'
- '90c01a1771f90007b001057edd4ada66751e54ccc380b3d87672694ab7ea92cb'
- '5359cfa322403bad1a20dc55de290c5f5c2f8d56afeba9c4a84dfc35cc89ec8b'
- '6d7076392aa3537072ba731e3e65ff46308237da6e8c557f3a6b1d06af6bc195')
- pkgver() {
- cd ${srcdir}/$_gitname
- printf $_pkgver".r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
- }
- prepare() {
- cd ${srcdir}/${_gitname}
- patch -p1 -i ${srcdir}/gcc10-fix.patch
- patch -p1 -i ${srcdir}/vadriverinit-fix.patch
- patch -p1 -i ${srcdir}/libva-2.0-abi-header-fix.patch
- autoreconf -v --install
- }
- build() {
- cd ${srcdir}/${_gitname}
- ./configure --prefix=/usr \
- --enable-drm \
- --enable-x11 \
- --enable-wayland
- make
- }
- package() {
- cd ${srcdir}/${_gitname}
- make install DESTDIR=${pkgdir}
- }
Add Comment
Please, Sign In to add comment