[mimetic] Initial SETUP.

Christopher Meng cicku at fedoraproject.org
Thu Jul 3 03:52:59 UTC 2014


commit 590d4b20475632609a372c3b2f4a8450519b737a
Author: Christopher Meng <i at cicku.me>
Date:   Thu Jul 3 11:51:35 2014 +0800

    Initial SETUP.

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


More information about the scm-commits mailing list