]> git.pld-linux.org Git - SPECS.git/blob - sping.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / sping.spec
1 Summary:        Small ping
2 Summary(pl.UTF-8):      Mały ping
3 Name:           sping
4 Version:        1.2
5 Release:        2
6 Group:          Networking/Admin
7 License:        BSD
8 Source0:        http://box3n.gumbynet.org/~fyre/software/%{name}-%{version}.tar.gz
9 # Source0-md5:  72f6b121da1850845a2d88d695bf20ec
10 URL:            http://box3n.gumbynet.org/~fyre/software/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 sping sends ICMP ECHO requests to network hosts to determine whether
15 they are alive. It is a small and hopefully secure implementation of
16 the common ping utility that offers far less control over the packet
17 options that may be specified (packet size, delay between packets,
18 etc.), for both security and bandwidth reasons.
19
20 %description -l pl.UTF-8
21 sping wysyła żądania ICMP ECHO do hostów w sieci, żeby sprawdzić czy
22 żyją. Jest małą i, miejmy nadzieję, bezpieczną implementacją znanego
23 narzędzia "ping", która oferuje dużo mniejszą kontrolę nad
24 właściwościami pakietu które można ustawić (rozmiar pakietu, przerwy
25 miedzy pakietami itp.), ze względu zarówno na bezpieczeństwo jak i na
26 stopień obciążenia łącza.
27
28 %prep
29 %setup -q
30
31 %build
32 %{__make} \
33         CC="%{__cc}" \
34         CFLAGS="%{rpmcflags}"
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38
39 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man8}
40
41 install ping $RPM_BUILD_ROOT%{_sbindir}/sping
42 install ping.8 $RPM_BUILD_ROOT%{_mandir}/man8/sping.8
43
44 %clean
45 rm -rf $RPM_BUILD_ROOT
46
47 %files
48 %defattr(644,root,root,755)
49 %doc README
50 %attr(4750,root,adm) %{_sbindir}/*
51 %{_mandir}/man*/*
This page took 1.297303 seconds and 3 git commands to generate.