]> git.pld-linux.org Git - packages/rsync-bpc.git/blob - rsync-bpc.spec
8ea9db5f58411bd60edfbada80487f3a09d9b218
[packages/rsync-bpc.git] / rsync-bpc.spec
1 Summary:        A customized version of rsync that is used as part of BackupPC
2 Name:           rsync-bpc
3 Version:        3.1.2.1
4 Release:        1
5 License:        GPL v3+
6 Group:          Networking/Utilities
7 Source0:        https://github.com/backuppc/rsync-bpc/releases/download/%{version}/%{name}-%{version}.tar.gz
8 # Source0-md5:  7749b21b46db4e6a74120c8687a5944c
9 URL:            https://github.com/backuppc/rsync-bpc
10 BuildRequires:  acl-devel
11 BuildRequires:  attr-devel
12 BuildRequires:  popt-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Rsync-bpc is a customized version of rsync that is used as part of
17 BackupPC, an open source backup system.
18
19 The main change to rsync is adding a shim layer (in the subdirectory
20 backuppc, and in bpc_sysCalls.c) that emulates the system calls for
21 accessing the file system so that rsync can directly read/write files
22 in BackupPC's format.
23
24 Rsync-bpc is fully line-compatible with vanilla rsync, so it can talk
25 to rsync servers and clients.
26
27 Rsync-bpc serves no purpose outside of BackupPC.
28
29 %prep
30 %setup -q
31
32 %build
33 %configure
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 %{__make} install \
39         DESTDIR=$RPM_BUILD_ROOT
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc COPYING NEWS README
47 %attr(755,root,root) %{_bindir}/rsync_bpc
48
49 %changelog
This page took 0.030244 seconds and 2 git commands to generate.