libsylph-vl.spec 2.3 KB

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