extundelete-vl.spec 2.4 KB

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