source: projects/specs/branches/6/e/extundelete/extundelete-vl.spec @ 3743

Revision 3743, 2.4 KB checked in by kenta, 13 years ago (diff)

extundelete: initial build for Vine Linux

Line 
1Name:           extundelete
2Version:        0.2.0
3Release:        3%{?_dist_release}
4Summary:        An ext3 and ext4 file system undeletion utility
5Summary(ja):    ext3 と ext4 ファイルシステムのための削除ファイル復元ユーティリティ
6
7Group:          Applications/System
8Packager:       kenta
9Vendor:         Project Vine
10License:        GPLv2+
11URL:            http://extundelete.sourceforge.net
12Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
13BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14BuildRequires:  e2fsprogs-devel
15
16%description
17extundelete is a utility that can recover deleted files from an ext3 or ext4
18partition. extundelete uses the information stored in the partition's journal
19to attempt to recover a file that has been deleted from the partition. There is
20no guarantee that any particular file will be able to be undeleted, so always
21try to have a good backup system in place, or at least put one in place after
22recovering your files!
23
24%description -l ja
25extundelete は ext3 と ext4 パーティション上で削除したファイルを復元することが
26できます。extundelete はジャーナル・ファイルシステムの履歴情報を活用して、削除さ
27れたファイルを復元します。
28ただし、復元したいファイルを復元できる保証はありません。日頃からバックアップを欠か
29ずに、そして、うまく復元できた場合にはそのファイルはしっかり管理しておきましょう。
30
31%prep
32%setup -q
33
34%build
35%configure
36make %{?_smp_mflags}
37
38
39%install
40rm -rf $RPM_BUILD_ROOT
41make install DESTDIR=$RPM_BUILD_ROOT
42
43
44%clean
45rm -rf $RPM_BUILD_ROOT
46
47
48%files
49%defattr(-,root,root,-)
50%doc README LICENSE
51%{_bindir}/%{name}
52
53
54%changelog
55* Sat Apr 16 2011 NAKAMURA Kenta <kenta@vinelinux.org> - 0.2.0-3
56- initial build for Vine Linux
57
58* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-2
59- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
60
61* Sat Jul 24 2010 Hicham HAOUARI <hicham.haouari@gmail.com> 0.2.0-1
62- New upstream release
63- Drop no-strict-aliasing-break patch
64- Drop OPTFLAGS patch ( no need now since autotools are used )
65
66* Tue Apr 13 2010 Hicham HAOUARI <hicham.haouari@gmail.com> 0.1.8-2
67- Fix miscellaneous issues ( https://bugzilla.redhat.com/show_bug.cgi?id=581723#c1 )
68
69* Sun Apr 11 2010 Hicham HAOUARI <hicham.haouari@gmail.com> 0.1.8-1
70- Initial rpm
Note: See TracBrowser for help on using the repository browser.