From 48a0314886226ec62d28bcdc8bd7ddacbe09f925 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 21:31:46 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.2.3-1mamba;Sun May 02 2021] --- README.md | 2 ++ courier-unicode.spec | 76 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 courier-unicode.spec diff --git a/README.md b/README.md index 41e216e..c205684 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # courier-unicode +This library implements several algorithms related to the Unicode Standard. + diff --git a/courier-unicode.spec b/courier-unicode.spec new file mode 100644 index 0000000..127893d --- /dev/null +++ b/courier-unicode.spec @@ -0,0 +1,76 @@ +Name: courier-unicode +Version: 2.2.3 +Release: 1mamba +Summary: This library implements several algorithms related to the Unicode Standard +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.courier-mta.org/unicode/ +Source: https://sourceforge.net/projects/courier/files/courier-unicode/%{version}/courier-unicode-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +This library implements several algorithms related to the Unicode Standard. + +%package -n lib%{name} +Group: System/Libraries +Summary: This library implements several algorithms related to the Unicode Standard. + +%description -n lib%{name} +This library implements several algorithms related to the Unicode Standard. +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 +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libcourier-unicode.so.* +%doc AUTHORS COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/courier-unicode*.h +%{_libdir}/libcourier-unicode.a +%{_libdir}/libcourier-unicode.la +%{_libdir}/libcourier-unicode.so +%{_datadir}/aclocal/courier-unicode-version.m4 +%{_datadir}/aclocal/courier-unicode.m4 +%{_mandir}/man3/unicode*3* +%{_mandir}/man7/courier-unicode.7* +%doc ChangeLog README + +%changelog +* Sun May 02 2021 Silvan Calarco 2.2.3-1mamba +- package created using the webbuild interface