]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
ipv6 support
[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.1
5 Release:        3
6 Copyright:      GPL
7 Group:          Applications/Networking
8 Group(pl):      Aplikacje/Sieciowe
9 Source:         ftp://samba.anu.edu.au/pub/rsync/%{name}-%{version}.tar.gz
10 Patch:          rsync-231-v6-19990520-PLD.patch
11 URL:            http://samba.anu.edu.au/rsync/
12 BuildRoot:      /tmp/%{name}-%{version}-root
13
14 %description
15 rsync is a replacement for rcp that has many more features.
16
17 rsync uses the "rsync algorithm" which provides a very fast method for
18 bringing remote files into sync. It does this by sending just the
19 differences in the files across the link, without requiring that both
20 sets of files are present at one of the ends of the link beforehand.
21
22 A technical report describing the rsync algorithm is included with
23 this package. 
24
25 %description -l pl
26 Rsync jest zamiennikiem programu rcp i jest bardziej rozbudowan± sk³adniê
27 poleceñ. Program ten u¿ywa efektywnego algorytmu "rsync" w czasie komunikacji 
28 i transportu plików do systemu zdalnego. Dokumentacja techniczna nowego 
29 algorytmu zosta³a równie¿ do³±czona do pakietu.
30
31 %prep
32 %setup -q
33 %patch -p1
34
35 %build
36 autoconf
37 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
38 ./configure %{_target_platform} \
39         --prefix=%{_prefix} \
40         --enable-ipv6
41 make 
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 make install prefix=$RPM_BUILD_ROOT/usr
47
48 strip $RPM_BUILD_ROOT%{_bindir}/rsync
49
50 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
51         README
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc README
59 %attr(755,root,root) %{_bindir}/rsync
60 %{_mandir}/man[15]/*
61
62 %changelog
63 * Wed Jun  9 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
64   [2.3.1-3]
65 - based on spec from RH contrib (witten by Douglas N. Arnold
66   <dna@math.psu.edu>),
67 - pl translation by Wojtek ¦lusarczyk <wojtek@shadow.eu.org>,
68 - spec rewrited by PLD team.
This page took 0.199635 seconds and 4 git commands to generate.