]> git.pld-linux.org Git - packages/e2salvage.git/blame_incremental - e2salvage.spec
- unified or fixed %clean section
[packages/e2salvage.git] / e2salvage.spec
... / ...
CommitLineData
1Summary: e2salvage - a utility which tries to recover a data from damaged ext2
2Summary(pl.UTF-8): e2salvage - narzędzie próbujące odzyskać dane z uszkodzonego ext2
3Name: e2salvage
4Version: 0.0.8a
5Release: 1
6License: GPL
7Group: Applications/System
8Source0: http://dl.sourceforge.net/e2salvage/%{name}-%{version}.tbz2
9# Source0-md5: 029608f5f42890aabd1a2c889de859ad
10Patch0: %{name}-linux_types.patch
11Patch1: %{name}-gcc4.patch
12Patch2: %{name}-am.patch
13Patch3: %{name}-no-geob.patch
14Patch4: %{name}-fs_include.patch
15URL: http://e2salvage.sourceforge.net/
16BuildRequires: autoconf
17BuildRequires: automake
18BuildRequires: libtool
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
22e2salvage is a utility which tries to recover a data from damaged ext2
23filesystems. Unlike e2fsck, it does not look for the data at
24particular places and it don't tend to believe the data it finds; thus
25it can handle much more damaged filesystem.
26
27fsck connects the found i-nodes to lost+found directory; e2salvage
28instead tries to recover the directory structure. If all else fails
29the directories are linked to the root.
30
31%description -l pl.UTF-8
32e2salvage to narzędzie, które próbuje odzyskać dane z uszkodzonych
33systemów plików ext2. W przeciwieństwie do e2fsck nie szuka danych w
34określonych miejscach i nie próbuje zaufać danym, które znajdzie;
35dzięki temu może obsłużyć dużo bardziej uszkodzone systemy plików.
36
37fsck dołącza znalezione i-węzły do katalogu lost+found; e2salvage
38zamiast tego próbuje odtworzyć strukturę katalogów. Jeśli wszystko
39inne zawiedzie, katalogi są podłączane do głównego katalogu.
40
41%prep
42%setup -q
43%patch0 -p0
44%patch1 -p1
45%patch2 -p1
46%patch3 -p1
47%patch4 -p1
48
49%build
50%{__libtoolize}
51%{__aclocal}
52%{__autoconf}
53%{__autoheader}
54%{__automake}
55%configure
56%{__make}
57
58%install
59rm -rf $RPM_BUILD_ROOT
60
61%{__make} install \
62 DESTDIR=$RPM_BUILD_ROOT
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%files
68%defattr(644,root,root,755)
69%doc AUTHORS NEWS README TODO ChangeLog
70%attr(755,root,root) %{_bindir}/*
This page took 0.719793 seconds and 4 git commands to generate.