1
0
forked from ports/contrib

libva-intel: 2.4.0 -> 2.4.1

This commit is contained in:
Tim Biermann 2020-06-08 19:10:41 +00:00
parent 5c90371bbd
commit 05a0a59e05
3 changed files with 10 additions and 13 deletions

View File

@ -1,5 +1,4 @@
drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/dri/ drwxr-xr-x root/root usr/lib/dri/
-rwxr-xr-x root/root usr/lib/dri/i965_drv_video.la
-rwxr-xr-x root/root usr/lib/dri/i965_drv_video.so -rwxr-xr-x root/root usr/lib/dri/i965_drv_video.so

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38+kQwQ0ZQOq4ugJOAP14xPlH0o0uzXAwKRNDa39DJfM+q48pn1TP8s3SVAKIYtgTBCqmFGYVM09+enPOPJDWgw= RWSagIOpLGJF315TFkWWLvjZ8loLFSN6zMyJ6582ifM+AmTHiCRAVgGSQrp4lxDoWSoBIMMY6PfuJF7awHlzeHQMhxTNlbIdBg4=
SHA256 (Pkgfile) = 4a7d7c2f5af38574770c5a19444cec500d477c22301a85ce3ef68032a79fadda SHA256 (Pkgfile) = 27e96187d3ebe02b04fe2c15822e8a0ecced581b89db439138572c4b27d20ab3
SHA256 (.footprint) = 735f9b5ba694e84521e9ed63166b424078f8a81d671b81d38f3500e7bd793a0f SHA256 (.footprint) = 92cc0a35ffe0b36abeb6d1a68f1b5c2989ee4916dc6437ae5319fe7c02b31469
SHA256 (intel-vaapi-driver-2.4.0.tar.bz2) = 71e2ddd985af6b221389db1018c4e8ca27a7f939fb51dcdf49d0efcb5ff3d089 SHA256 (intel-vaapi-driver-2.4.1.tar.bz2) = 0081fce08eb3a83f7d99c3b853c8fdfa0af437b8f5b0fb7c66faeb83bcbe0c19

View File

@ -1,18 +1,16 @@
# Description: libva video acceleration for newer intel based setups # Description: libva video acceleration for newer intel based setups
# URL: https://github.com/intel/intel-vaapi-driver # URL: https://github.com/intel/intel-vaapi-driver
# Maintainer: Thomas Penteker, tek at serverop dot de # Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: glu ffmpeg libva # Depends on: glu ffmpeg libva meson ninja
name=libva-intel name=libva-intel
version=2.4.0 version=2.4.1
release=1 release=1
source=(https://github.com/intel/intel-vaapi-driver/releases/download/${version}/intel-vaapi-driver-${version}.tar.bz2) source=(https://github.com/intel/intel-vaapi-driver/releases/download/${version}/intel-vaapi-driver-${version}.tar.bz2)
build() { build() {
cd intel-vaapi-driver-$version meson intel-vaapi-driver-$version build \
--prefix=/usr
./configure --prefix=/usr ninja -C build
DESTDIR=$PKG ninja -C build install
make
make DESTDIR=$PKG install
} }