From 291746a7df9c9c8479eefe3971c83dbf6148243f Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 01:46:41 +0100 Subject: [PATCH] package created using the webbuild interface [release 5.19.0-1mamba;Sat Feb 20 2016] --- README.md | 2 ++ kimageformats.spec | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 kimageformats.spec diff --git a/README.md b/README.md index 2be736a..a649a51 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # kimageformats +KDE Frameworks 5 plugins to allow QImage to support extra file formats. + diff --git a/kimageformats.spec b/kimageformats.spec new file mode 100644 index 0000000..59bb1c3 --- /dev/null +++ b/kimageformats.spec @@ -0,0 +1,58 @@ +%define majver %(echo %version | cut -d. -f1-2) + +Name: kimageformats +Version: 5.19.0 +Release: 1mamba +Summary: KDE Frameworks 5 plugins to allow QImage to support extra file formats +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.kde.org +Source: http://download.kde.org/stable/frameworks/5.19/kimageformats-%{version}.tar.xz +# Source: http://download.kde.org/stable/frameworks/%{majver}/...-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libilmbase-devel +BuildRequires: libkarchive-devel +BuildRequires: libopenexr-devel +BuildRequires: libqt5-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: rpm-macros-kde5 +BuildRequires: extra-cmake-modules +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +KDE Frameworks 5 plugins to allow QImage to support extra file formats. + +%debug_package + +%prep +%setup -q + +%build +%cmake_kde5 -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%dir %{_libdir}/qt5/plugins/imageformats +%{_libdir}/qt5/plugins/imageformats/kimg_*.so +%dir %{_datadir}/kservices5/qimageioplugins +%{_datadir}/kservices5/qimageioplugins/*.desktop +%doc COPYING.LIB + +%changelog +* Sat Feb 20 2016 Silvan Calarco 5.19.0-1mamba +- package created using the webbuild interface