]> git.pld-linux.org Git - packages/aggregate.git/blob - aggregate.spec
b293ba3250db44bc23355ed7a07683380c0eb096
[packages/aggregate.git] / aggregate.spec
1 Summary:        aggregate list of prefixes
2 Summary(pl.UTF-8):      agregacja listy adresów
3 Name:           aggregate
4 Version:        1.6
5 Release:        1
6 License:        BSD-like
7 Group:          Applications/Networking
8 Source0:        ftp://ftp.isc.org/isc/aggregate/%{name}-%{version}.tar.gz
9 # Source0-md5:  6fcc515388bf2c5b0c8f9f733bfee7e1
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 aggregate takes a list of prefixes in conventional format on stdin,
16 and performs two optimisations to reduce the length of the prefix
17 list. It removes any supplied prefixes which are supurfluous because
18 they are already included in another supplied prefix (e.g.,
19 203.97.2.0/24 would be removed if 203.97.0.0/17 was also supplied),
20 and identifies adjacent prefixes that can be combined under a single,
21 shorter-length prefix (e.g., 203.97.2.0/24 and 203.97.3.0/24 can be
22 combined into the single prefix 203.97.2.0/23).
23
24 %description -l pl.UTF-8
25 aggregate bierze listę adresów sieci w tradycyjnej formie na
26 standardowym wejściu i wykonuje dwie optymalizacje by zmniejszyć jej
27 wielkość. Usuwa wszelkie adresy sieci zawierające się w innych
28 adresach (np 203.97.2.0/24 będzie usunięte jeżeli jest podana
29 także 203.97.0.0/17), oraz rozpoznaje przystające adresy sieci
30 które mogą być połączone w jeden, krótszy adres (np
31 203.97.2.0/24 i 203.97.3.0/24 będą połączone w pojedyńczy adres
32 203.97.2.0/23).
33
34 %prep
35 %setup -q
36
37 %build
38 %{__aclocal}
39 %{__autoconf}
40 %configure
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
47
48 install aggregate aggregate-ios $RPM_BUILD_ROOT%{_bindir}
49 install aggregate.1 aggregate-ios.1 $RPM_BUILD_ROOT%{_mandir}/man1
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc LICEN* HISTORY
57 %attr(755,root,root) %{_bindir}/*
58 %{_mandir}/man1/*
This page took 0.059948 seconds and 2 git commands to generate.