53 lines
1.6 KiB
RPMSpec
53 lines
1.6 KiB
RPMSpec
|
Name: extundelete
|
||
|
Version: 0.2.4
|
||
|
Release: 1mamba
|
||
|
Summary: An ext3 and ext4 file undeletion utility
|
||
|
Group: System/Tools
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
|
||
|
URL: http://extundelete.sourceforge.net/
|
||
|
Source: http://downloads.sourceforge.net/project/extundelete/extundelete/%{version}/extundelete-%{version}.tar.bz2
|
||
|
License: GPL
|
||
|
## AUTOBUILDREQ-BEGIN
|
||
|
BuildRequires: glibc-devel
|
||
|
BuildRequires: libe2fs-devel
|
||
|
BuildRequires: libgcc
|
||
|
BuildRequires: libstdc++6-devel
|
||
|
## AUTOBUILDREQ-END
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
extundelete is a utility that can recover deleted files from an ext3 or ext4 partition.
|
||
|
The ext3 file system is the most common file system when using Linux, and ext4 is its successor.
|
||
|
extundelete uses the information stored in the partition's journal to attempt to recover a file that has been deleted from the partition.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%configure
|
||
|
%make
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
%makeinstall
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%{_bindir}/extundelete
|
||
|
%doc LICENSE README
|
||
|
|
||
|
%changelog
|
||
|
* Mon Jan 14 2013 Automatic Build System <autodist@mambasoft.it> 0.2.4-1mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Wed Dec 19 2012 Automatic Build System <autodist@mambasoft.it> 0.2.3-1mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Mon Jun 06 2011 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 0.2.0-1mamba
|
||
|
- package created by autospec
|