]> git.pld-linux.org Git - packages/anteater.git/blob - anteater.spec
- avoid wildcards in %files section
[packages/anteater.git] / anteater.spec
1 Summary:        Dynamic MTA logfile analyser
2 Summary(pl.UTF-8):      Dynamiczny analizator logów MTA
3 Name:           anteater
4 Version:        0.4.5
5 Release:        1
6 License:        GPL v2
7 Group:          Applications/System
8 Source0:        http://downloads.sourceforge.net/anteater/%{name}-%{version}.tar.bz2
9 # Source0-md5:  21ab169a88e1a80942cc8816d7ea6438
10 Patch0:         %{name}-configure.in.patch
11 Patch1:         %{name}-cstdlib.patch
12 URL:            http://anteater.sourceforge.net/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libstdc++-devel
16 BuildRequires:  libtool
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 Anteater is a log analyser for MTA logfiles (for example sendmail and
21 postfix). The tool is written in 100% C++ and very easy to customize.
22 Input, output, and the analysis are modular class objects with a clear
23 interface.
24
25 %description -l pl.UTF-8
26 Anteater (mrówkojad) jest analizatorem logów MTA (np. sendmaila i
27 postfiksa). Narzędzie jest napisane w 100% w C++ i jest bardzo łatwe
28 do przystosowania. Wejście i wyjście są modularnymi klasami obiektów z
29 przejrzystym interfejsem.
30
31 %prep
32 %setup -q
33
34 %patch0 -p1
35 %patch1 -p1
36
37 %build
38 %{__libtoolize}
39 %{__aclocal}
40 %{__autoconf}
41 %{__autoheader}
42 %{__automake}
43 %configure
44 %{__make}
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48
49 %{__make} install \
50         DESTDIR=$RPM_BUILD_ROOT
51
52 %clean
53 rm -rf $RPM_BUILD_ROOT
54
55 %files
56 %defattr(644,root,root,755)
57 %doc AUTHORS ChangeLog NEWS README TODO
58 %attr(755,root,root) %{_bindir}/anteater
59 %{_mandir}/man1/anteater.1*
This page took 0.152471 seconds and 3 git commands to generate.