43 lines
700 B
RPMSpec
43 lines
700 B
RPMSpec
#%global debug_package %{nil}
|
|
|
|
Name: fping
|
|
Version: 4.2
|
|
Release: 1
|
|
Summary: fping is a program to send ICMP echo probes to network hosts
|
|
License: BSD like
|
|
URL: http://www.fping.org/
|
|
Source0: http://www.fping.org/dist/%{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: gcc
|
|
|
|
%description
|
|
fping is a program to send ICMP echo probes to network hosts, similar to ping, but much better performing when pinging multiple hosts
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}/
|
|
|
|
%build
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%pre
|
|
%preun
|
|
%post
|
|
%postun
|
|
|
|
%check
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc INSTALL CHANGELOG.md
|
|
%{_sbindir}/*
|
|
%{_mandir}/*
|
|
|
|
%changelog
|
|
* Sun Mar 29 2020 Wei Xiong <myeuler@163.com>
|
|
- Package init
|
|
|