From d3eff80b57e9fea1cfb6b69908e0446dc51c4a3d Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:04:48 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.4.7-1mamba;Thu Mar 24 2022] --- README.md | 2 ++ qt-avif-image-plugin.spec | 47 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 qt-avif-image-plugin.spec diff --git a/README.md b/README.md index 7199dbf..057310a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # qt-avif-image-plugin +Qt plug-in to allow Qt and KDE based applications to read/write AVIF images. + diff --git a/qt-avif-image-plugin.spec b/qt-avif-image-plugin.spec new file mode 100644 index 0000000..faf8247 --- /dev/null +++ b/qt-avif-image-plugin.spec @@ -0,0 +1,47 @@ +Name: qt-avif-image-plugin +Version: 0.4.7 +Release: 1mamba +Summary: Qt plug-in to allow Qt and KDE based applications to read/write AVIF images +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/novomesk/qt-avif-image-plugin +Source: https://github.com/novomesk/qt-avif-image-plugin.git/v%{version}/qt-avif-image-plugin-%{version}.tar.bz2 +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libavif-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +BuildRequires: qt5-qtbase-devel +## AUTOBUILDREQ-END +BuildRequires: cmake + +%description +Qt plug-in to allow Qt and KDE based applications to read/write AVIF images. + +%debug_package + +%prep +%setup -q + +%build +%cmake -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/qt5/plugins/imageformats/libqavif5.so +%doc LICENSE + +%changelog +* Thu Mar 24 2022 Silvan Calarco 0.4.7-1mamba +- package created using the webbuild interface