package created using the webbuild interface [release 2.4.1-1mamba;Wed Dec 07 2022]

This commit is contained in:
Silvan Calarco 2024-01-05 23:56:22 +01:00
parent b3bda4a368
commit ed6f89223e
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# intel-vaapi-driver
VA-API user mode driver for Intel GEN Graphics family.

53
intel-vaapi-driver.spec Normal file
View File

@ -0,0 +1,53 @@
Name: intel-vaapi-driver
Version: 2.4.1
Release: 1mamba
Summary: VA-API user mode driver for Intel GEN Graphics family
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.intel.com/content/www/us/en/developer/topic-technology/open/opensource-media-framework/overview.html
Source: https://github.com/intel/intel-vaapi-driver.git/%{version}/intel-vaapi-driver-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libdrm-devel
## AUTOBUILDREQ-END
%description
VA-API user mode driver for Intel GEN Graphics family.
%package -n libva-intel-driver
Group: System/Kernel and Hardware
Summary: VA-API user mode driver for Intel GEN Graphics family.
%description -n libva-intel-driver
VA-API user mode driver for Intel GEN Graphics family.
%debug_package
%prep
%setup -q
%build
%meson
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n libva-intel-driver -p /sbin/ldconfig
%postun -n libva-intel-driver -p /sbin/ldconfig
%files -n libva-intel-driver
%defattr(-,root,root)
%{_libdir}/dri/i965_drv_video.so
%doc AUTHORS COPYING
%changelog
* Wed Dec 07 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 2.4.1-1mamba
- package created using the webbuild interface