]> git.pld-linux.org Git - packages/httping.git/blame_incremental - httping.spec
- updated to 1.5.7
[packages/httping.git] / httping.spec
... / ...
CommitLineData
1Summary: Ping-like tool for HTTP requests
2Summary(pl.UTF-8): Narzędzie do "pingowania" poprzez protokół HTTP
3Name: httping
4Version: 1.5.7
5Release: 1
6License: GPL
7Group: Networking/Utilities
8Source0: http://www.vanheusden.com/httping/%{name}-%{version}.tgz
9# Source0-md5: 8b250e67ac72750feefffa45da499da8
10URL: http://www.vanheusden.com/httping/
11BuildRequires: openssl-devel
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15httping is a "ping"-like tool for HTTP requests. Give it a URL and it
16will show how long it takes to connect, send a request, and retrieve
17the reply (only the headers). It can be used for monitoring or
18statistical purposes (measuring latency).
19
20%description -l pl.UTF-8
21httping jest narzędziem podobnym do pinga, służącym do wysyłania
22zapytań HTTP. Po podaniu URL-a httping pokazuje jak wiele czasu
23zajmuje połączenie, wysłanie zapytania i otrzymanie odpowiedzi (tylko
24nagłówki). Httping może być używany do monitorowania lub do celów
25statystycznych.
26
27%prep
28%setup -q
29
30%build
31%{__make} \
32 CC="%{__cc}" \
33 DEBUG="" \
34 OFLAGS="%{rpmcflags}"
35
36%install
37rm -rf $RPM_BUILD_ROOT
38install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
39
40%{__make} install \
41 DESTDIR=$RPM_BUILD_ROOT
42
43%clean
44rm -rf $RPM_BUILD_ROOT
45
46%files
47%defattr(644,root,root,755)
48%doc readme.txt
49%attr(755,root,root) %{_bindir}/httping
50%{_mandir}/man1/httping*
This page took 0.0459889999999999 seconds and 4 git commands to generate.