]> git.pld-linux.org Git - packages/fsarchiver.git/blob - fsarchiver.spec
- release 2 (by relup.sh)
[packages/fsarchiver.git] / fsarchiver.spec
1 Summary:        Safe and flexible file-system backup/deployment tool
2 Name:           fsarchiver
3 Version:        0.6.12
4 Release:        2
5 License:        GPL v2+
6 Group:          Applications/System
7 Source0:        http://downloads.sourceforge.net/fsarchiver/%{name}-%{version}.tar.gz
8 # Source0-md5:  dc54cefcf9c2bc331063d82a7ad54133
9 URL:            http://www.fsarchiver.org/
10 BuildRequires:  attr-devel
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  bzip2-devel
14 BuildRequires:  e2fsprogs-devel
15 BuildRequires:  libblkid-devel
16 BuildRequires:  libgcrypt-devel
17 BuildRequires:  libuuid-devel
18 BuildRequires:  lzo-devel
19 BuildRequires:  pkgconfig
20 BuildRequires:  xz-devel
21 BuildRequires:  zlib-devel
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 FSArchiver is a system tool that allows you to save the contents of a
26 file-system to a compressed archive file. The file-system can be
27 restored on a partition which has a different size and it can be
28 restored on a different file-system. Unlike tar/dar, FSArchiver also
29 creates the file-system when it extracts the data to partitions.
30 Everything is checksummed in the archive in order to protect the data.
31 If the archive is corrupt, you just lose the current file, not the
32 whole 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
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -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.057608 seconds and 4 git commands to generate.