package created using the webbuild interface [release 1.3.295-1mamba;Fri Jan 03 2025]

This commit is contained in:
Silvan Calarco 2025-01-04 10:44:07 +01:00
parent c2eb362d69
commit 98e4ae44d8
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# vulkan-volk # vulkan-volk
volk is a meta-loader for Vulkan. It allows you to dynamically load entrypoints required to use Vulkan without linking to vulkan-1.dll or statically linking Vulkan loader. Additionally, volk simplifies the use of Vulkan extensions by automatically loading all associated entrypoints. Finally, volk enables loading Vulkan entrypoints directly from the driver which can increase performance by skipping loader dispatch overhead.

48
vulkan-volk.spec Normal file
View File

@ -0,0 +1,48 @@
Name: vulkan-volk
Version: 1.3.295
Release: 1mamba
Summary: Meta loader for Vulkan API
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/zeux/volk
Source: https://github.com/zeux/volk.git/%{version}/volk-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
volk is a meta-loader for Vulkan. It allows you to dynamically load entrypoints required to use Vulkan without linking to vulkan-1.dll or statically linking Vulkan loader. Additionally, volk simplifies the use of Vulkan extensions by automatically loading all associated entrypoints. Finally, volk enables loading Vulkan entrypoints directly from the driver which can increase performance by skipping loader dispatch overhead.
%define debug_package %{nil}
%prep
%setup -q -n volk-%{version}
%build
%cmake \
-DVOLK_INSTALL=On
%cmake_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%cmake_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_includedir}/volk.c
%{_includedir}/volk.h
%dir %{_libdir}/cmake/volk
%{_libdir}/cmake/volk/volk*.cmake
%{_libdir}/libvolk.a
%doc README.md
%changelog
* Fri Jan 03 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.295-1mamba
- package created using the webbuild interface