]> git.pld-linux.org Git - packages/fsarchiver.git/blame - fsarchiver.spec
- release 2 (by relup.sh)
[packages/fsarchiver.git] / fsarchiver.spec
CommitLineData
903a0730 1Summary: Safe and flexible file-system backup/deployment tool
2Name: fsarchiver
3Version: 0.6.12
fd6708c6 4Release: 2
903a0730 5License: GPL v2+
6Group: Applications/System
7Source0: http://downloads.sourceforge.net/fsarchiver/%{name}-%{version}.tar.gz
8# Source0-md5: dc54cefcf9c2bc331063d82a7ad54133
9URL: http://www.fsarchiver.org/
10BuildRequires: attr-devel
11BuildRequires: autoconf
12BuildRequires: automake
13BuildRequires: bzip2-devel
14BuildRequires: e2fsprogs-devel
dc8a44aa 15BuildRequires: libblkid-devel
903a0730 16BuildRequires: libgcrypt-devel
17BuildRequires: libuuid-devel
18BuildRequires: lzo-devel
19BuildRequires: pkgconfig
20BuildRequires: xz-devel
21BuildRequires: zlib-devel
22BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24%description
25FSArchiver is a system tool that allows you to save the contents of a
26file-system to a compressed archive file. The file-system can be
27restored on a partition which has a different size and it can be
28restored on a different file-system. Unlike tar/dar, FSArchiver also
29creates the file-system when it extracts the data to partitions.
30Everything is checksummed in the archive in order to protect the data.
31If the archive is corrupt, you just lose the current file, not the
32whole archive.
33
34%prep
35%setup -q
36
37%build
38%{__aclocal}
39%{__autoconf}
40%{__autoheader}
41%{__automake}
42%configure
43%{__make}
44
45%install
46rm -rf $RPM_BUILD_ROOT
47
48%{__make} install \
49 DESTDIR=$RPM_BUILD_ROOT
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc AUTHORS ChangeLog README
57%attr(755,root,root) %{_sbindir}/%{name}
58%{_mandir}/man8/%{name}.8*
This page took 0.059114 seconds and 4 git commands to generate.