File ioping.spec of Package ioping
1
Name: ioping
2
Version: 0.6
3
Release: 2.1
4
Summary: Simple disk I/O latency monitoring tool
5
Group: System/Monitoring
6
License: GPLv3+
7
URL: http://code.google.com/p/ioping
8
Source0: ioping-%{version}.tar.gz
9
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
10
BuildRequires: gcc, make
11
12
%description
13
This tool lets you monitor I/O latency in real time, in a way
14
similar to how ping(1) does for network latency.
15
16
%prep
17
%setup -q
18
19
%build
20
make %{?_smp_mflags}
21
22
%install
23
make install PREFIX=%{_prefix} DESTDIR=$RPM_BUILD_ROOT
24
25
%clean
26
rm -rf $RPM_BUILD_ROOT
27
28
%files
29
%defattr(-,root,root,-)
30
%attr(755,root,root) %{_bindir}/ioping
31
%attr(644, root, root) %{_mandir}/man1/ioping.1.*
32
%doc
33
34
%changelog
35
* Tue Aug 2 2011 zawertun@gmail.com
36
- update to version 0.6
37
* Mon Jun 6 2011 zawertun@gmail.com
38
- Minor changes for OBS
39
* Thu Jun 2 2011 kir@openvz.org
40
- fix i386 build on x86_64
41
* Mon May 30 2011 kir@openvz.org
42
- initial packaging
43