diff --git a/README.md b/README.md index d4cbe87..c1c5091 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ksanecore +KSaneCore is a library that provides a Qt interface for the SANE library for scanner hardware. + diff --git a/ksanecore.spec b/ksanecore.spec new file mode 100644 index 0000000..bb0cd36 --- /dev/null +++ b/ksanecore.spec @@ -0,0 +1,82 @@ +%define majver %(echo %version | cut -d. -f1-2) + +Name: ksanecore +Version: 22.08.0 +Release: 1mamba +Summary: A library that provides a Qt interface for the SANE library for scanner hardware +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://kde.org +Source: https://download.kde.org/stable/release-service/%{version}/src/ksanecore-%{version}.tar.xz +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libki18n-devel +BuildRequires: libstdc++6-devel +BuildRequires: qt5-qtbase-devel +BuildRequires: sane-backends-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: rpm-macros-kde5 +BuildRequires: extra-cmake-modules +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +KSaneCore is a library that provides a Qt interface for the SANE library for scanner hardware. + +%package -n lib%{name} +Group: System/Libraries +Summary: A library that provides a Qt interface for the SANE library for scanner hardware. + +%description -n lib%{name} +KSaneCore is a library that provides a Qt interface for the SANE library for scanner hardware. +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 + +%build +%cmake_kde5 -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%find_lang %{name}5_qt --with-qt --with-man --with-html --all-name || touch %{name}5_qt.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig + +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} -f %{name}5_qt.lang +%defattr(-,root,root) +%{_libdir}/libKSaneCore.so.* + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/KSaneCore +%{_includedir}/KSaneCore/* +%dir %{_libdir}/cmake/KSaneCore +%{_libdir}/cmake/KSaneCore/KSaneCore*.cmake +%{_libdir}/libKSaneCore.so + +%changelog +* Thu Aug 25 2022 Silvan Calarco 22.08.0-1mamba +- package created using the webbuild interface