]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- missing autoconf in %build.
[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 autoconf
35 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
36 ./configure %{_target_platform} \
37         --prefix=%{_prefix}
38 make 
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 make install prefix=$RPM_BUILD_ROOT/usr
44
45 strip $RPM_BUILD_ROOT%{_bindir}/rsync
46
47 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
48         README
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc README
56 %attr(755,root,root) %{_bindir}/rsync
57 %{_mandir}/man[15]/*
58
59 %changelog
60 * Wed Jun  9 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
61   [2.3.1-3]
62 - based on spec from RH contrib (witten by Douglas N. Arnold
63   <dna@math.psu.edu>),
64 - pl translation by Wojtek ¦lusarczyk <wojtek@shadow.eu.org>,
65 - spec rewrited by PLD team.
This page took 0.059015 seconds and 4 git commands to generate.