]> git.pld-linux.org Git - packages/e4rat.git/blame - e4rat.spec
- very-very initial
[packages/e4rat.git] / e4rat.spec
CommitLineData
0bfeebf0
ZU
1Summary: A toolset to accelerate the boot process as well as application startups
2Name: e4rat
3Version: 0.2.1
4Release: 0.1
5License: GPL
6Group: Applications
7Source0: http://downloads.sourceforge.net/project/%{name}/%{version}/%{name}_%{version}_src.tar.gz
8# Source0-md5: cbb1f3cdd2b8c96b4402028da07b11f2
9URL: http://e4rat.sourceforge.net/
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13e4rat ("Ext4 - Reducing Access Times") is a toolset to accelerate the
14boot process as well as application startups. Through physical file
15realloction e4rat eliminates both seek times and rotational delays.
16This leads to a high disk transfer rate. Placing files on disk in a
17sequentially ordered way allows to efficiently read-ahead files in
18parallel to the program startup. The combination of sequentially
19reading and a high cache hit rate may reduce the boot time by a factor
20of three, as the example below shows.
21
22e4rat is based on the online defragmentation ioctl EXT4_IOC_MOVE_EXT
23from the Ext4 filesystem, which was introduced in Linux Kernel 2.6.31.
24Other filesystem types and/or earlier versions of extended filesystems
25are not supported.
26
27%prep
28%setup -q
29
30%build
31cmake .
32
33%install
34rm -rf $RPM_BUILD_ROOT
35
36%{__make} install \
37 DESTDIR=$RPM_BUILD_ROOT
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
44%doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
45%attr(755,root,root) %{_bindir}/*
This page took 0.11289 seconds and 4 git commands to generate.