]> git.pld-linux.org Git - packages/anteater.git/blob - anteater.spec
- added configure.in.patch
[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:        0.1
6 Epoch:          0
7 License:        GPL v2
8 Group:          Applications/System
9 Source0:        http://downloads.sourceforge.net/anteater/%{name}-%{version}.tar.bz2
10 # Source0-md5:  21ab169a88e1a80942cc8816d7ea6438
11 Patch0:         %{name}-configure.in.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
36 %build
37 %{__libtoolize}
38 %{__aclocal}
39 %{__autoconf}
40 %{__autoheader}
41 %{__automake}
42 %configure
43 %{__make}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc AUTHORS ChangeLog NEWS README TODO
57 %attr(755,root,root) %{_bindir}/*
58 %{_mandir}/man?/*
This page took 0.068865 seconds and 3 git commands to generate.