OBS-URL: https://build.opensuse.org/package/show/graphics/OpenImageDenoise?expand=0&rev=16
126 lines
3.8 KiB
RPMSpec
126 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package OpenImageDenoise
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
# Copyright (c) 2019-2021 LISA GmbH, Bingen, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define sover 2
|
|
%define sub_library_sover %(echo %{version} | tr '.' '_')
|
|
%define main_library lib%{name}%{sover}
|
|
%define core_library lib%{name}_core%{sub_library_sover}
|
|
%define device_cpu_library lib%{name}_device_cpu%{sub_library_sover}
|
|
|
|
%define pkgname oidn
|
|
Name: OpenImageDenoise
|
|
Version: 2.3.3
|
|
Release: 0
|
|
Summary: Open Image Denoise library
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://openimagedenoise.github.io/
|
|
Source: https://github.com/%{name}/%{pkgname}/releases/download/v%{version}/%{pkgname}-%{version}.src.tar.gz
|
|
BuildRequires: cmake >= 3.1
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: ispc >= 1.21.0
|
|
BuildRequires: tbb-devel
|
|
ExclusiveArch: x86_64 aarch64
|
|
|
|
%description
|
|
Intel Open Image Denoise is an open source library of high-performance,
|
|
high-quality denoising filters for images rendered with ray tracing.
|
|
|
|
%package -n %{main_library}
|
|
Summary: Shared library for Open Image Denoise library
|
|
Group: System/Libraries
|
|
Requires: %{core_library} = %{version}-%{release}
|
|
Requires: %{device_cpu_library} = %{version}-%{release}
|
|
|
|
%description -n %{main_library}
|
|
Intel Open Image Denoise is an open source library of high-performance,
|
|
high-quality denoising filters for images rendered with ray tracing.
|
|
|
|
This package holds the main shared library.
|
|
|
|
%package -n %{core_library}
|
|
Summary: Shared library for Open Image Denoise library
|
|
Group: System/Libraries
|
|
|
|
%description -n %{core_library}
|
|
Intel Open Image Denoise is an open source library of high-performance,
|
|
high-quality denoising filters for images rendered with ray tracing.
|
|
|
|
This package holds the core sub shared library.
|
|
|
|
%package -n %{device_cpu_library}
|
|
Summary: Shared library for Open Image Denoise library
|
|
Group: System/Libraries
|
|
|
|
%description -n %{device_cpu_library}
|
|
Intel Open Image Denoise is an open source library of high-performance,
|
|
high-quality denoising filters for images rendered with ray tracing.
|
|
|
|
This package holds the device cpu sub shared library.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{main_library} = %{version}
|
|
|
|
%description devel
|
|
This package contains the C++ header files and symbolic links to the shared
|
|
libraries for %{name}. If you would like to develop programs using %{name},
|
|
you will need to install %{name}-devel.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{pkgname}-%{version}
|
|
|
|
%build
|
|
%cmake
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
rm -r %{buildroot}%{_datadir}/doc
|
|
|
|
%ldconfig_scriptlets -n %{main_library}
|
|
%ldconfig_scriptlets -n %{core_library}
|
|
%ldconfig_scriptlets -n %{device_cpu_library}
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%{_bindir}/oidn*
|
|
|
|
%files -n %{main_library}
|
|
%license LICENSE.txt
|
|
%{_libdir}/lib%{name}.so.*
|
|
|
|
%files -n %{core_library}
|
|
%license LICENSE.txt
|
|
%{_libdir}/lib%{name}_core.so.*
|
|
|
|
%files -n %{device_cpu_library}
|
|
%license LICENSE.txt
|
|
%{_libdir}/lib%{name}_device_cpu.so.*
|
|
|
|
%files devel
|
|
%license LICENSE.txt
|
|
%doc CHANGELOG.md README.md readme.pdf
|
|
%{_includedir}/%{name}
|
|
%{_libdir}/cmake/%{name}-%{version}
|
|
%{_libdir}/lib%{name}*.so
|
|
|
|
%changelog
|