From 897dab254e51bfc1ab064000a9b9f5806f46954a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Mon, 6 May 2024 10:28:00 +0200 Subject: [PATCH] package created using the webbuild interface [release 1.1.36-1mamba;Mon May 06 2024] --- README.md | 2 ++ openxr.spec | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 openxr.spec diff --git a/README.md b/README.md index 03d914d..0a48c9e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # openxr +An open standard for virtual reality and augmented reality platforms and devices. + diff --git a/openxr.spec b/openxr.spec new file mode 100644 index 0000000..fcd34ff --- /dev/null +++ b/openxr.spec @@ -0,0 +1,100 @@ +Name: openxr +Version: 1.1.36 +Release: 1mamba +Summary: An open standard for virtual reality and augmented reality platforms and devices +Group: Development/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://khronos.org/openxr +Source: https://github.com/KhronosGroup/OpenXR-SDK-Source.git/release-%{version}/OpenXR-SDK-Source-%{version}.tar.bz2 +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libX11-devel +BuildRequires: libXrandr-devel +BuildRequires: libXxf86vm-devel +BuildRequires: libgcc +BuildRequires: libglvnd-devel +BuildRequires: libstdc++6-devel +BuildRequires: libvulkan-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +An open standard for virtual reality and augmented reality platforms and devices. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q -n OpenXR-SDK-Source-%{version} + +%build +%cmake \ + -DBUILD_TESTS=ON \ + -DPRESENTATION_BACKEND=xlib \ + -DDYNAMIC_LOADER=ON + +%cmake_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%cmake_install + +rm -rf %{buildroot}%{_docdir}/openxr + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_bindir}/hello_xr +%{_bindir}/openxr_runtime_list +%{_bindir}/openxr_runtime_list_json +%{_mandir}/man1/hello_xr.1* +%{_mandir}/man1/openxr_runtime_list.1* +%{_mandir}/man1/openxr_runtime_list_json.1* + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libopenxr_loader.so.* +%doc LICENSE LICENSES + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/openxr +%{_includedir}/openxr/* +%{_libdir}/libXrApiLayer_api_dump.so +%{_libdir}/libXrApiLayer_core_validation.so +%{_libdir}/libopenxr_loader.so +%{_libdir}/pkgconfig/openxr.pc +%dir %{_libdir}/cmake/openxr +%{_libdir}/cmake/openxr/OpenXR*.cmake +%dir %{_datadir}/openxr/1/api_layers +%dir %{_datadir}/openxr/1/api_layers/explicit.d +%{_datadir}/openxr/1/api_layers/explicit.d/XrApiLayer_api_dump.json +%{_datadir}/openxr/1/api_layers/explicit.d/XrApiLayer_core_validation.json +%doc README.md + +%changelog +* Mon May 06 2024 Silvan Calarco 1.1.36-1mamba +- package created using the webbuild interface