]> git.pld-linux.org Git - packages/libetpan.git/blob - libetpan.spec
- rel 3
[packages/libetpan.git] / libetpan.spec
1 Summary:        Portable mail access library
2 Summary(pl.UTF-8):      Przenośna biblioteka dostępu do poczty
3 Name:           libetpan
4 Version:        1.0
5 Release:        3
6 License:        BSD
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/libetpan/%{name}-%{version}.tar.gz
9 # Source0-md5:  5addc766141a0b1d29ee1ca4ba1b6808
10 URL:            http://sourceforge.net/projects/libetpan/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  db-devel >= 4
14 BuildRequires:  libtool
15 BuildRequires:  openssl-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 The purpose of this mail library is to provide a portable, efficient
20 middleware for different kinds of mail access. It will be used for
21 low-level mail handling: network protocols (IMAP/NNTP/POP3/SMTP over
22 TCP/IP and SSL/TCP/IP, already implemented), local storage
23 (mbox/MH/maildir), message / MIME parser.
24
25 %description -l pl.UTF-8
26 Celem biblioteki jest udostępnienie przenośnego, efektywnego
27 pośrednika dla różnych metod dostępu do poczty. Pozwala na: obsługę
28 różnych protokołów sieciowych (IMAP/NNTP/POP3/SMTP przez TCP/IP oraz
29 SSL/TCP/IP), obsługę lokalnych zasobów (mbox/MH/maildir) czy
30 parsowanie wiadomości MIME.
31
32 %package devel
33 Summary:        Header files for libEtPan
34 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libEtPan
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}-%{release}
37 Requires:       db-devel >= 4
38 Requires:       openssl-devel
39
40 %description devel
41 Header files for libEtPan library.
42
43 %description devel -l pl.UTF-8
44 Pliki nagłówkowe biblioteki libEtPan.
45
46 %package static
47 Summary:        Static libEtPan library
48 Summary(pl.UTF-8):      Statyczna biblioteka libEtPan
49 Group:          Development/Libraries
50 Requires:       %{name}-devel = %{version}-%{release}
51
52 %description static
53 Static libEtPan library.
54
55 %description static -l pl.UTF-8
56 Statyczna biblioteka libEtPan.
57
58 %prep
59 %setup -q
60
61 %build
62 %{__libtoolize}
63 %{__aclocal}
64 %{__autoconf}
65 %{__automake}
66 %configure
67 %{__make}
68
69 %install
70 rm -rf $RPM_BUILD_ROOT
71
72 %{__make} install \
73         DESTDIR=$RPM_BUILD_ROOT
74
75 %clean
76 rm -rf $RPM_BUILD_ROOT
77
78 %post   -p /sbin/ldconfig
79 %postun -p /sbin/ldconfig
80
81 %files
82 %defattr(644,root,root,755)
83 %doc ChangeLog NEWS
84 %attr(755,root,root) %{_libdir}/libetpan.so.*.*.*
85 %attr(755,root,root) %ghost %{_libdir}/libetpan.so.15
86
87 %files devel
88 %defattr(644,root,root,755)
89 %doc doc/API/*.htm
90 %attr(755,root,root) %{_bindir}/libetpan-config
91 %attr(755,root,root) %{_libdir}/libetpan.so
92 %{_libdir}/libetpan.la
93 %{_includedir}/libetpan
94 %{_includedir}/*.h
95
96 %files static
97 %defattr(644,root,root,755)
98 %{_libdir}/libetpan.a
This page took 0.076479 seconds and 3 git commands to generate.