]> git.pld-linux.org Git - packages/eps.git/blob - eps.spec
- new
[packages/eps.git] / eps.spec
1 Summary:        Email Processing System
2 Summary(pl):    System przetwarzania e-maili
3 Name:           eps
4 Version:        1.2
5 Release:        1
6 License:        GPL
7 Group:          Libraries
8 Source0:        http://www.inter7.com/eps/%{name}-%{version}.tar.gz
9 # Source0-md5:  20e2e7771e0d99138950ec85880a1d1a
10 URL:            http://www.inter7.com/eps.html
11 BuildRequires:  libtool
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 EPS stands for Email Processing System. This package is intended to
16 give people the ability to write their own email processing tools.
17 Whether you want to process incoming and outgoing emails, or just
18 analyze a message, this package is intended to aid in that endeavor.
19
20 %description -l pl
21 EPS to system przetwarzania e-maili (Email Processing System - st±d
22 nazwa). Pakiet ma daæ ludziom mo¿liwo¶æ pisania w³asnych narzêdzi do
23 przetwarzania poczty elektronicznej. Je¶li chcemy przetwarzaæ listy
24 przychodz±ce lub wychodz±ce, albo tylko przeanalizowaæ wiadomo¶æ,
25 ten pakiet ma pomóc tych staraniach.
26
27 %package devel
28 Summary:        Header files for EPS library
29 Summary(pl):    Pliki nag³ówkowe biblioteki EPS
30 Group:          Development/Libraries
31 Requires:       %{name} = %{version}
32
33 %description devel
34 Header files for EPS library.
35
36 %description devel -l pl
37 Pliki nag³ówkowe biblioteki EPS.
38
39 %package static
40 Summary:        Static EPS library
41 Summary(pl):    Statyczna biblioteka EPS
42 Group:          Development/Libraries
43 Requires:       %{name}-devel = %{version}
44
45 %description static
46 Static EPS library.
47
48 %description static -l pl
49 Statyczna biblioteka EPS.
50
51 %prep
52 %setup -q
53
54 %build
55 %{__make} libeps.a \
56         CC="libtool --mode=compile %{__cc}" \
57         DEFS="%{rpmcflags} -Wall -I."
58
59 libtool --mode=link %{__cc} -o libeps.la *.lo -rpath %{_libdir}
60
61 %install
62 rm -rf $RPM_BUILD_ROOT
63
64 %{__make} install \
65         LIBDIR=$RPM_BUILD_ROOT%{_libdir} \
66         INCDIR=$RPM_BUILD_ROOT%{_includedir}/eps
67
68 libtool --mode=install install libeps.la $RPM_BUILD_ROOT%{_libdir}
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %doc ChangeLog TODO doc/{credits,howto,license}
79 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
80
81 %files devel
82 %defattr(644,root,root,755)
83 %attr(755,root,root) %{_libdir}/lib*.so
84 %{_libdir}/lib*.la
85 %{_includedir}/eps
86
87 %files static
88 %defattr(644,root,root,755)
89 %{_libdir}/lib*.a
This page took 0.049025 seconds and 3 git commands to generate.