]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- added -q %setup parameter,
[packages/rsync.git] / rsync.spec
1 Summary:     Program for efficient remote updates of files.
2 Name:        rsync
3 Version:     2.1.1
4 Release:     1
5 Copyright:   GPL
6 Group:       Applications/Networking
7 Source:      ftp://samba.anu.edu.au/pub/rsync/%{name}-%{version}.tar.gz
8 URL:         http://samba.anu.edu.au/rsync
9 BuildRoot:   /tmp/%{name}-%{version}-root
10
11 %description
12 rsync is a replacement for rcp that has many more features.
13
14 rsync uses the "rsync algorithm" which provides a very fast method for
15 bringing remote files into sync. It does this by sending just the
16 differences in the files across the link, without requiring that both
17 sets of files are present at one of the ends of the link beforehand.
18
19 A technical report describing the rsync algorithm is included with
20 this package. 
21
22 %prep
23 %setup -q
24
25 %build
26 ./configure --prefix=/usr
27 make CFLAGS=$RPM_OPT_FLAGS
28 strip rsync
29 latex tech_report
30 dvips tech_report -o
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT/usr/{bin,man/man{1,5}}
35 install rsync $RPM_BUILD_ROOT/usr/bin
36 install rsync.1 $RPM_BUILD_ROOT/usr/man/man1
37 install rsyncd.conf.5 $RPM_BUILD_ROOT/usr/man/man5
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43
44 %attr(644, root, root, 755) %doc tech_report.ps README
45 %attr(755, root, root) /usr/bin/rsync
46 %attr(644, root, root) /usr/man/man[15]/*
47
48 %changelog
49 * Fri Sep 18 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
50   [2.1.1-1]
51 - added -q %setup parameter,
52 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
53 - added using %%{name} and %%{version} in Source,
54 - added using $RPM_OPT_FLAGS during compile,
55 - added full %attr description in %files.
56
57 * Thu Jun 18 1998 Douglas N. Arnold <dna@math.psu.edu>
58 Upgrade to rsync version 2.0.18
59
60 * Sat May 16 1998 John H Terpstra <jht@aquasoft.com.au>
61   Upgraded to Rsync 2.0.6
62     -new feature anonymous rsync
63
64 * Mon Apr  6 1998 Douglas N. Arnold <dna@math.psu.edu>
65 Upgrade to rsync version 1.7.2.
66
67 * Sun Mar  1 1998 Douglas N. Arnold <dna@math.psu.edu>
68 Built 1.6.9-1 based on the 1.6.3-2 spec file of John A. Martin.
69 Changes from 1.6.3-2 packaging: added latex and dvips commands
70 to create tech_report.ps.
71
72 * Mon Aug 25 1997 John A. Martin <jam@jamux.com>
73 Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
74 was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
75 showing no packager nor signature but giving 
76 "Source RPM: rsync-1.6.3-1.src.rpm".
77
78 Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
79 to '%build', removed '%prefix'.
80
81 * Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
82 rsync-1.6.2-1 packaged.  (This entry by jam to credit Michael for the
83 previous package(s).)
This page took 0.110815 seconds and 4 git commands to generate.