OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/libkdcraw?expand=0&rev=216
141 lines
3.8 KiB
RPMSpec
141 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package libkdcraw
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# 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 rname libkdcraw
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "qt6"
|
|
%define qt6 1
|
|
%define pkg_suffix -qt6
|
|
%define kf6_version 6.6.0
|
|
%define qt6_version 6.6.0
|
|
%define library_name libKDcrawQt6
|
|
%define so_suffix -5
|
|
%else
|
|
%define qt5 1
|
|
%define kf5_version 5.91.0
|
|
%define qt5_version 5.15.0
|
|
%define library_name libKF5KDcraw
|
|
%define so_suffix 5
|
|
%endif
|
|
%bcond_without released
|
|
Name: libkdcraw%{?pkg_suffix}
|
|
Version: 25.04.3
|
|
Release: 0
|
|
Summary: Shared library interface around dcraw
|
|
License: LGPL-2.0-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later
|
|
URL: https://www.kde.org
|
|
Source0: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz
|
|
%if %{with released}
|
|
Source1: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig
|
|
Source2: applications.keyring
|
|
%endif
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libraw) >= 0.18.0
|
|
%if 0%{?qt6}
|
|
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
|
|
BuildRequires: cmake(Qt6Core) >= %{qt6_version}
|
|
BuildRequires: cmake(Qt6Gui) >= %{qt6_version}
|
|
%else
|
|
BuildRequires: extra-cmake-modules >= %{kf5_version}
|
|
BuildRequires: cmake(Qt5Core) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5Gui) >= %{qt5_version}
|
|
Provides: libkdcraw-kf5 = %{version}
|
|
Obsoletes: libkdcraw-kf5 < %{version}
|
|
%endif
|
|
|
|
%description
|
|
Libkdcraw is a C++ interface around dcraw binary program used to decode
|
|
RAW picture files. The library documentation is available on header
|
|
files.
|
|
|
|
This library is used by kipi-plugins, digiKam and others kipi host
|
|
programs.
|
|
|
|
%package -n %{library_name}%{so_suffix}
|
|
Summary: Shared library interface around dcraw
|
|
Requires: %{name} >= %{version}
|
|
|
|
%description -n %{library_name}%{so_suffix}
|
|
Libkdcraw is a C++ interface around dcraw binary program used to decode
|
|
RAW picture files. The library documentation is available on header
|
|
files.
|
|
|
|
This library is used by kipi-plugins, digiKam and others kipi host
|
|
programs.
|
|
|
|
%package devel
|
|
Summary: Shared library interface around dcraw
|
|
Requires: %{library_name}%{so_suffix} = %{version}
|
|
%if 0%{?qt5}
|
|
Obsoletes: libkdcraw-kf5-devel < %{version}
|
|
Provides: libkdcraw-kf5-devel = %{version}
|
|
%endif
|
|
|
|
%description devel
|
|
Libkdcraw is a C++ interface around dcraw binary program used to decode
|
|
RAW picture files. The library documentation is available on header
|
|
files.
|
|
|
|
This library is used by kipi-plugins, digiKam and others kipi host
|
|
programs.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{rname}-%{version}
|
|
|
|
%build
|
|
%if 0%{?qt6}
|
|
%cmake_kf6 -DBUILD_WITH_QT6:BOOL=TRUE
|
|
%kf6_build
|
|
%else
|
|
%cmake_kf5 -d build
|
|
%cmake_build
|
|
%endif
|
|
|
|
%install
|
|
%if 0%{?qt6}
|
|
%kf6_install
|
|
%else
|
|
%kf5_makeinstall -C build
|
|
%endif
|
|
|
|
%ldconfig_scriptlets -n %{library_name}%{so_suffix}
|
|
|
|
%files
|
|
%if 0%{?qt6}
|
|
%{_kf6_debugdir}/libkdcraw.categories
|
|
%else
|
|
%{_kf5_debugdir}/libkdcraw.categories
|
|
%endif
|
|
|
|
%files -n %{library_name}%{so_suffix}
|
|
%license LICENSES/*
|
|
%{_libdir}/%{library_name}.so.*
|
|
|
|
%files devel
|
|
%doc README
|
|
%if 0%{?qt6}
|
|
%{_kf6_cmakedir}/KDcrawQt6/
|
|
%{_includedir}/KDcrawQt6/
|
|
%else
|
|
%{_kf5_cmakedir}/KF5KDcraw/
|
|
%{_kf5_includedir}/KDCRAW/
|
|
%endif
|
|
%{_libdir}/%{library_name}.so
|
|
|
|
%changelog
|