From 44fe18daa021cf09aaeb39893d323c591861cd0e Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 22:34:34 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.7.D001-1mamba;Tue Mar 23 2021] --- README.md | 2 ++ fstrcmp.spec | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 91 insertions(+) create mode 100644 fstrcmp.spec diff --git a/README.md b/README.md index 1f611dd..c88996a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # fstrcmp +The fstrcmp project provides a library that is used to make fuzzy comparisons of strings and byte arrays, including multi-byte character strings. + diff --git a/fstrcmp.spec b/fstrcmp.spec new file mode 100644 index 0000000..5409181 --- /dev/null +++ b/fstrcmp.spec @@ -0,0 +1,89 @@ +Name: fstrcmp +Version: 0.7.D001 +Release: 1mamba +Summary: A library that is used to make fuzzy comparisons of strings and byte arrays, including multi-byte character strings +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://fstrcmp.sourceforge.net/ +Source: http://fstrcmp.sourceforge.net/fstrcmp-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +The fstrcmp project provides a library that is used to make fuzzy comparisons of strings and byte arrays, including multi-byte character strings. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +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} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -d -m0755 %{buildroot}{%{_bindir},%{_libdir}/pkgconfig,%{_docdir}/fstrcmp,%{_includedir},%{_mandir}/{man1,man3}} +%makeinstall + +chmod +x %{buildroot}%{_libdir}/lib*.so* + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_bindir}/fstrcmp + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libfstrcmp.so.* +%doc LICENSE + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/fstrcmp.h +%{_libdir}/libfstrcmp.a +%{_libdir}/libfstrcmp.la +%{_libdir}/libfstrcmp.so +%dir %{_datadir}/doc/fstrcmp +%{_datadir}/doc/fstrcmp/*.pdf +%{_mandir}/man1/fstrcmp.1.gz +%{_mandir}/man1/fstrcmp_license.1.gz +%{_mandir}/man3/fmemcmp.3* +%{_mandir}/man3/fmemcmpi.3* +%{_mandir}/man3/fstr*.3* +%{_mandir}/man3/fwcscmp.3* +%{_mandir}/man3/fwcscmpi.3* +%{_libdir}/pkgconfig/fstrcmp.pc +%doc README + + +%changelog +* Tue Mar 23 2021 Silvan Calarco 0.7.D001-1mamba +- package created using the webbuild interface