]> git.pld-linux.org Git - packages/ext3rminator.git/blame - ext3rminator.spec
- NEW, no real URL
[packages/ext3rminator.git] / ext3rminator.spec
CommitLineData
da6f8ade 1#
2Summary: Simple program for undeleting files from ext3 partition
3Name: ext3rminator
4%define _pre pre2
5Version: 0.3.0
6Release: 0.%{_pre}.1
7License: GPL v2
8Group: Applications/System
9Source0: http://web.glandium.org/debian/repository/experimental/%{name}_0.2.99+%{version}%{_pre}.orig.tar.gz
10# Source0-md5: 450ce0405a2be760a1e9ced200c05c72
11URL: http://web.glandium.org/debian/repository/experimental
12BuildRequires: e2fsprogs-devel
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16Ext3rminator is a last chance program when you just unthoughtfully deleted
17several megabytes of data on an ext3 (or ext2) partition. It goes through all
18free blocks in the filesystem to look for what can look like data.
19
20It is only able to recover files where the 48 first KB (actually, 12 blocks,
21a block usually being 4096 bytes) are contiguous.
22
23%prep
24%setup -q -n %{name}-%{version}%{_pre}
25
26%build
27CFLAGS="-I%{_includedir}/et %{rpmcflags}"
28export CFLAGS
29%configure
30%{__make}
31
32%install
33rm -rf $RPM_BUILD_ROOT
34
35%{__make} install \
36 DESTDIR=$RPM_BUILD_ROOT
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41%files
42%defattr(644,root,root,755)
43%doc AUTHORS ChangeLog TODO
44%attr(755,root,root) %{_bindir}/%{name}
45%{_mandir}/man1/%{name}.1*
This page took 0.053152 seconds and 4 git commands to generate.