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

This commit is contained in:
Silvan Calarco 2024-01-06 06:02:16 +01:00
parent 5c0e84514d
commit 8f12c0b8b8
2 changed files with 58 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libvdpau-va-gl
VDPAU driver with OpenGL/VAAPI backend.

56
libvdpau-va-gl.spec Normal file
View File

@ -0,0 +1,56 @@
Name: libvdpau-va-gl
Version: 0.4.2
Release: 1mamba
Summary: VDPAU driver with OpenGL/VAAPI backend
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/i-rinat/libvdpau-va-gl
Source: https://github.com/i-rinat/libvdpau-va-gl.git/v%{version}/libvdpau-va-gl-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libICE-devel
BuildRequires: libSM-devel
BuildRequires: libX11-devel
BuildRequires: libXext-devel
BuildRequires: libgcc
BuildRequires: libglvnd-devel
BuildRequires: libstdc++6-devel
BuildRequires: libva-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Provides: vdpau_backend
%description
VDPAU driver with OpenGL/VAAPI backend.
%debug_package
%prep
%setup -q
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libvdpau_va_gl.so
%{_libdir}/libvdpau_va_gl.so.1
%doc LICENSE
%changelog
* Wed Dec 07 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.2-1mamba
- package created using the webbuild interface