]> git.pld-linux.org Git - packages/anteater.git/blame_incremental - anteater.spec
- avoid wildcards in %files section
[packages/anteater.git] / anteater.spec
... / ...
CommitLineData
1Summary: Dynamic MTA logfile analyser
2Summary(pl.UTF-8): Dynamiczny analizator logów MTA
3Name: anteater
4Version: 0.4.5
5Release: 1
6License: GPL v2
7Group: Applications/System
8Source0: http://downloads.sourceforge.net/anteater/%{name}-%{version}.tar.bz2
9# Source0-md5: 21ab169a88e1a80942cc8816d7ea6438
10Patch0: %{name}-configure.in.patch
11Patch1: %{name}-cstdlib.patch
12URL: http://anteater.sourceforge.net/
13BuildRequires: autoconf
14BuildRequires: automake
15BuildRequires: libstdc++-devel
16BuildRequires: libtool
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20Anteater is a log analyser for MTA logfiles (for example sendmail and
21postfix). The tool is written in 100% C++ and very easy to customize.
22Input, output, and the analysis are modular class objects with a clear
23interface.
24
25%description -l pl.UTF-8
26Anteater (mrówkojad) jest analizatorem logów MTA (np. sendmaila i
27postfiksa). Narzędzie jest napisane w 100% w C++ i jest bardzo łatwe
28do przystosowania. Wejście i wyjście są modularnymi klasami obiektów z
29przejrzystym 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
47rm -rf $RPM_BUILD_ROOT
48
49%{__make} install \
50 DESTDIR=$RPM_BUILD_ROOT
51
52%clean
53rm -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.054132 seconds and 4 git commands to generate.