summaryrefslogtreecommitdiffstats
path: root/fio.spec
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@fedoraproject.org>2008-02-14 22:41:04 +0000
committerEric Sandeen <sandeen@fedoraproject.org>2008-02-14 22:41:04 +0000
commite4e81f2898f2806868decebf97074a7209f95757 (patch)
tree5d0767d1a693912532366d53aa610096d269ed44 /fio.spec
parentbbb935ad7218a257e5588e454470cea46cfcd18c (diff)
downloadfio-e4e81f2898f2806868decebf97074a7209f95757.tar.gz
fio-e4e81f2898f2806868decebf97074a7209f95757.tar.xz
fio-e4e81f2898f2806868decebf97074a7209f95757.zip
Initial commit
Diffstat (limited to 'fio.spec')
-rw-r--r--fio.spec49
1 files changed, 49 insertions, 0 deletions
diff --git a/fio.spec b/fio.spec
new file mode 100644
index 0000000..f715fe2
--- /dev/null
+++ b/fio.spec
@@ -0,0 +1,49 @@
+Name: fio
+Version: 1.18
+Release: 1%{?dist}
+Summary: Multithreaded IO generation tool
+
+Group: Applications/System
+License: GPLv2
+URL: http://git.kernel.dk/?p=fio.git;a=summary
+Source: http://brick.kernel.dk/snaps/%{name}-%{version}.tar.bz2
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires: libaio-devel
+
+%description
+fio is an I/O tool that will spawn a number of threads or processes doing
+a particular type of io action as specified by the user. fio takes a
+number of global parameters, each inherited by the thread unless
+otherwise parameters given to them overriding that setting is given.
+The typical use of fio is to write a job file matching the io load
+one wants to simulate.
+
+
+%prep
+%setup -q
+
+
+%build
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install prefix=%{_prefix} mandir=%{_mandir} DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc README REPORTING-BUGS COPYING HOWTO examples
+%{_bindir}/*
+%{_mandir}/man1/*
+
+%changelog
+* Wed Feb 13 2008 Eric Sandeen <sandeen@redhat.com> 1.18-1
+- Initial build