]> git.pld-linux.org Git - packages/zbackup.git/blob - zbackup.spec
f41d36f62dc3b239ec238371193df51ee31c16c1
[packages/zbackup.git] / zbackup.spec
1 Summary:        A versatile deduplicating backup tool
2 Summary(pl.UTF-8):      Uniwersalne narzÄ\99dzie do deduplikacji kopii zapasowych
3 Name:           zbackup
4 Version:        1.2
5 Release:        1
6 Epoch:          1
7 License:        GPL v2+
8 Group:          Applications/Archiving
9 Source0:        https://github.com/%{name}/%{name}/archive/%{version}.tar.gz
10 # Source0-md5:  e816af0e1381a35236488dbe86003d14
11 URL:            http://zbackup.org/
12 BuildRequires:  cmake >= 2.8.2
13 BuildRequires:  lzma-devel
14 BuildRequires:  openssl-devel
15 BuildRequires:  protobuf-devel
16 BuildRequires:  zlib-devel
17 BuildRequires:  rpmbuild(macros) >= 1.600
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 zbackup is a globally-deduplicating backup tool, based on the ideas found in rsync.
22 Feed a large .tar into it, and it will store duplicate regions of it only once,
23 then compress and optionally encrypt the result. Feed another .tar file,
24 and it will also re-use any data found in any previous backups.
25 This way only new changes are stored, and as long as the files are
26 not very different, the amount of storage required is very low.
27 %description -l pl.UTF-8
28 zbackup jest narzÄ\99dziem sÅ\82użÄ\85cym do archiwizacji danyc,
29 bazujÄ\85cym na rsync i wykorzystujÄ\85ce deduplikacjÄ\99
30
31 %prep
32 %setup -q
33
34 %build
35 %cmake . 
36 #\
37 #       -CMAKE_INSTALL_PREFIX=%{_bindir}
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %attr(755,root,root) %{_bindir}/%{name}
52
This page took 0.464837 seconds and 2 git commands to generate.