libsylph-vl.spec 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. Summary: E-Mail client library
  2. Summary(ja): 電子メールクライアントライブラリ
  3. Name: libsylph
  4. Version: 1.1.0
  5. Release: 6%{?_dist_release}
  6. License: LGPLv2.1+
  7. Group: System Environment/Libraries
  8. URL: http://sylpheed.sraoss.jp/ja/download.html#libsylph
  9. Source0: http://sylpheed.sraoss.jp/sylpheed/libsylph/%{name}-%{version}.tar.bz2
  10. Patch0: libsylph-1.1.0-glib-header.patch
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  12. BuildRequires: glib2-devel >= 2.4.0
  13. BuildRequires: openssl-devel
  14. Packager: iwaim
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. %description
  18. LibSylph is an e-mail client library which is derived from Sylpheed.
  19. LibSylph is a lightweight but featureful library. It has many common e-mail
  20. related features and other useful functions, and you can utilize them from
  21. your application. Moreover you can create a new e-mail client by wrapping
  22. LibSylph with any UI.
  23. %description -l ja
  24. LibSylphはSylpheedのユーザインタフェースから独立したコア部分の機能を提供する
  25. ライブラリです。LibSylphによって、他のアプリケーションからSylpheedの機能を
  26. 利用することができます。また、LibSylphを用いて新たなメールクライアントを
  27. 作成することも可能です。それ以外にも、単独で使えるメール関連、文字コード変換、
  28. 文字列処理、I/O、XML処理などの多数のAPIを提供しています。
  29. %package devel
  30. Summary: Development files for %{name}
  31. Summary(ja): %{name} の開発ファイル
  32. Group: Development/Libraries
  33. Requires: %{name} = %{version}-%{release}
  34. %description devel
  35. The %{name}-devel package contains libraries and header files for
  36. developing applications that use %{name}.
  37. %prep
  38. %setup -q
  39. %if %{?_dist_release} != "vl6"
  40. %patch0 -p1 -b .glibheader
  41. %endif
  42. %build
  43. %configure --enable-shared --disable-static
  44. make
  45. %install
  46. %{__rm} -rf %{buildroot}
  47. %makeinstall
  48. %{__rm} %{buildroot}%{_libdir}/libsylph.la
  49. %find_lang %{name}
  50. %clean
  51. %{__rm} -rf %{buildroot}
  52. %check
  53. make check
  54. %post -p /sbin/ldconfig
  55. %postun -p /sbin/ldconfig
  56. %files -f %{name}.lang
  57. %defattr(-,root,root,-)
  58. %doc README* AUTHORS COPYING ChangeLog NEWS TODO
  59. %{_libdir}/libsylph.so.*
  60. %files devel
  61. %defattr(-,root,root,-)
  62. %doc doc
  63. %{_includedir}/*
  64. %{_libdir}/*.so
  65. %changelog
  66. * Sun Mar 19 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.1.0-6
  67. - add BR: openssl-devel
  68. * Sun Mar 19 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.1.0-5
  69. - build with current VineSeed
  70. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.1.0-4
  71. - build with current VineSeed
  72. * Wed Dec 12 2012 IWAI, Masaharu <iwai@alib.jp> 1.1.0-3vl7
  73. - build with current VineSeed
  74. - add only "glib.h" patch (Patch0)
  75. * Sat Apr 9 2011 IWAI, Masaharu <iwai@alib.jp> 1.1.0-2
  76. - add BuildRequires: glib2-devel >= 2.4.0
  77. - add Summary(ja)
  78. * Tue Mar 9 2010 IWAI, Masaharu <iwai@alib.jp> 1.1.0-1
  79. - Initial build.