source: projects/specs/branches/6/lib/libs/libsylph/libsylph-vl.spec @ 3361

Revision 3361, 2.3 KB checked in by iwaim, 13 years ago (diff)

libsylph-1.1.0-2

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