590d4b2
Name:           mimetic
590d4b2
Version:        0.9.8
d3144d6
Release:        2%{?dist}
590d4b2
Summary:        A full featured C++ MIME library
590d4b2
License:        MIT
590d4b2
URL:            http://www.codesink.org/mimetic_mime_library.html
590d4b2
Source0:        http://www.codesink.org/download/mimetic-%{version}.tar.gz
590d4b2
BuildRequires:  doxygen
590d4b2
590d4b2
%description
590d4b2
mimetic is an Email library (MIME) written in C++ designed to be easy to use 
590d4b2
and integrate but yet fast and efficient.
590d4b2
590d4b2
It has been built around the standard lib. This means that you'll not find yet
590d4b2
another string class or list implementation and that you'll feel comfortable 
590d4b2
in using this library from the very first time. 
590d4b2
590d4b2
Most classes functionalities and behavior will be clear if you ever studied 
590d4b2
MIME and its components; if you don't know anything about Internet messages 
590d4b2
you'll probably want to read some RFCs to understand the topic and, therefore,
590d4b2
easily use the library whose names, whenever possible, overlap terms adopted 
590d4b2
in the standard RFC documents. At the very least: RFC 822, RFC 2045 and RFC 
590d4b2
2046.
590d4b2
590d4b2
%package        devel
590d4b2
Summary:        Development files for %{name}
590d4b2
Requires:       %{name}%{?_isa} = %{version}-%{release}
590d4b2
590d4b2
%description    devel
590d4b2
This package contains libraries and header files for
590d4b2
developing applications that use %{name}.
590d4b2
590d4b2
%prep
590d4b2
%setup -q
590d4b2
590d4b2
%build
590d4b2
%configure --disable-static
590d4b2
make %{?_smp_mflags}
590d4b2
make docs -C doc
590d4b2
590d4b2
%install
590d4b2
%make_install
590d4b2
find %{buildroot} -name '*.*a' -delete -print
590d4b2
590d4b2
%check
590d4b2
make check
590d4b2
590d4b2
%post -p /sbin/ldconfig
590d4b2
590d4b2
%postun -p /sbin/ldconfig
590d4b2
590d4b2
%files
590d4b2
%doc AUTHORS COPYING LICENSE README
590d4b2
%{_libdir}/libmimetic.so.*
590d4b2
590d4b2
%files devel
590d4b2
%doc ChangeLog doc/html/
590d4b2
%{_includedir}/mimetic/
590d4b2
%{_libdir}/libmimetic.so
590d4b2
590d4b2
%changelog
d3144d6
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
d3144d6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d3144d6
590d4b2
* Wed Jun 18 2014 Christopher Meng <rpm@cicku.me> - 0.9.8-1
590d4b2
- Update to 0.9.8
590d4b2
590d4b2
* Wed Sep 12 2012 Christopher Meng <rpm@cicku.me> - 0.9.7-1
590d4b2
- Initial Package.