]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- update to 2.3.2
[packages/rsync.git] / rsync.spec
1 Summary:        Program for efficient remote updates of files.
2 Summary(pl):    Program efektywnego modyfikowania plików na zdalnym komputerze.
3 Name:           rsync
4 Version:        2.3.2
5 Release:        1
6 Copyright:      GPL
7 Group:          Daemons
8 Group(pl):      Serwery
9 Source:         ftp://samba.anu.edu.au/pub/rsync/%{name}-%{version}.tar.gz
10 Patch0:         rsync-config.patch
11 Patch1:         rsync-man.patch
12 # commented out since there's not rsync-2.3.2 patch available yet (19991119)
13 # Patch2:               ftp://ftp.kame.net/pub/kame/misc/rsync-231-v6-19990902a.diff.gz
14 URL:            http://samba.anu.edu.au/rsync/
15 BuildRoot:      /tmp/%{name}-%{version}-root
16
17 %define _sysconfdir /etc/rsyncd
18
19 %description
20 rsync is a replacement for rcp that has many more features.
21
22 rsync uses the "rsync algorithm" which provides a very fast method for
23 bringing remote files into sync. It does this by sending just the
24 differences in the files across the link, without requiring that both
25 sets of files are present at one of the ends of the link beforehand.
26
27 A technical report describing the rsync algorithm is included with
28 this package. 
29
30 %description -l pl
31 Rsync jest zamiennikiem programu rcp i jest bardziej rozbudowan± sk³adniê
32 poleceñ. Program ten u¿ywa efektywnego algorytmu "rsync" w czasie komunikacji 
33 i transportu plików do systemu zdalnego. Dokumentacja techniczna nowego 
34 algorytmu zosta³a równie¿ do³±czona do pakietu.
35
36 %prep
37 %setup  -q
38 %patch0 -p1
39 %patch1 -p1
40 #%patch2 -p1
41
42 %build
43 autoconf 
44 LDFLAGS="-s"; export LDFLAGS
45
46 #%configure \
47 #       --enable-ipv6
48
49 %configure
50
51 make 
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55
56 make install \
57         prefix=$RPM_BUILD_ROOT%{_prefix} \
58         mandir=$RPM_BUILD_ROOT%{_mandir} \
59         bindir=$RPM_BUILD_ROOT%{_sbindir}
60
61 install -d $RPM_BUILD_ROOT/etc/rsyncd
62
63 :> $RPM_BUILD_ROOT/etc/rsyncd/rsyncd.conf
64 :> $RPM_BUILD_ROOT/etc/rsyncd/rsyncd.secrets
65
66 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* README 
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %files
72 %defattr(644,root,root,755)
73 %doc README.gz 
74 %dir /etc/rsyncd
75 %attr(640,root,root) %config /etc/rsyncd/rsyncd.conf
76 %attr(640,root,root) %config /etc/rsyncd/rsyncd.secrets
77
78 %attr(755,root,root) %{_sbindir}/*
79 %{_mandir}/man[15]/*
This page took 0.042475 seconds and 4 git commands to generate.