package created using the webbuild interface [release 1.2.134-1mamba;Tue Mar 17 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 19:09:21 +01:00
parent 9b3aaf6197
commit b8b4389080
2 changed files with 48 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# vulkan-headers
Vulkan Header files and API registry.

46
vulkan-headers.spec Normal file
View File

@ -0,0 +1,46 @@
Name: vulkan-headers
Version: 1.2.134
Release: 1mamba
Summary: Vulkan Header files and API registry
Group: Development/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.khronos.org/vulkan
## GITSOURCE https://github.com/KhronosGroup/Vulkan-Headers.git v1.2.135
Source: https://github.com/KhronosGroup/Vulkan-Headers.git/v%{version}/Vulkan-Headers-%{version}.tar.bz2
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Vulkan Header files and API registry.
%prep
%setup -q -n Vulkan-Headers-%{version}
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%dir %{_includedir}/vulkan
%{_includedir}/vulkan/*.h
%{_includedir}/vulkan/vulkan.hpp
%dir %{_datadir}/vulkan/registry
%{_datadir}/vulkan/registry/*
%doc README.md
%changelog
* Tue Mar 17 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.134-1mamba
- package created using the webbuild interface