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