1 |
# $Id$ |
2 |
# Authority: dag |
3 |
# Upstream: Colin Phipps <cph@moria.org.uk> |
4 |
|
5 |
Summary: Partial/differential file transfer client over HTTP |
6 |
Name: zsync |
7 |
Version: 0.6.2 |
8 |
Release: 1%{?dist} |
9 |
License: Artistic License v2 |
10 |
Group: Applications/Internet |
11 |
URL: http://zsync.moria.org.uk/ |
12 |
|
13 |
Packager: Dag Wieers <dag@wieers.com> |
14 |
Vendor: Dag Apt Repository, http://dag.wieers.com/apt/ |
15 |
|
16 |
Source: http://zsync.moria.org.uk/download/zsync-%{version}.tar.bz2 |
17 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
18 |
|
19 |
%description |
20 |
zsync is a file transfer program. It allows you to download a file from |
21 |
a remote server, where you have a copy of an older version of the file |
22 |
on your computer already. zsync downloads only the new parts of the file. |
23 |
|
24 |
zsync uses the same algorithm as rsync. However, where rsync is designed |
25 |
for synchronising data from one computer to another within an organisation, |
26 |
zsync is designed for file distribution, with one file on a server to be |
27 |
distributed to thousands of downloaders. zsync requires no special server |
28 |
software just a web server to host the files and imposes no extra load on |
29 |
the server, making it ideal for large scale file distribution. |
30 |
|
31 |
%prep |
32 |
%setup |
33 |
|
34 |
%build |
35 |
%configure |
36 |
%{__make} %{?_smp_mflags} |
37 |
|
38 |
%install |
39 |
%{__rm} -rf %{buildroot} |
40 |
%{__make} install DESTDIR="%{buildroot}" |
41 |
|
42 |
%clean |
43 |
%{__rm} -rf %{buildroot} |
44 |
|
45 |
%files |
46 |
%defattr(-, root, root, 0755) |
47 |
%doc COPYING INSTALL README |
48 |
%doc %{_mandir}/man1/zsync.1* |
49 |
%doc %{_mandir}/man1/zsyncmake.1* |
50 |
%{_bindir}/zsync |
51 |
%{_bindir}/zsyncmake |
52 |
%exclude %{_docdir}/zsync/ |
53 |
|
54 |
%changelog |
55 |
* Tue Sep 21 2010 Dag Wieers <dag@wieers.com> - 0.6.2-1 |
56 |
- Updated to release 0.6.2. |
57 |
|
58 |
* Tue Jan 27 2009 Dag Wieers <dag@wieers.com> - 0.6-1 |
59 |
- Updated to release 0.6. |
60 |
|
61 |
* Sun Aug 06 2006 Dag Wieers <dag@wieers.com> - 0.5-1 |
62 |
- Updated to release 0.5. |
63 |
|
64 |
* Sun Jul 09 2006 Dag Wieers <dag@wieers.com> - 0.4.3-1 |
65 |
- Updated to release 0.4.3. |
66 |
|
67 |
* Thu Jul 14 2005 Dag Wieers <dag@wieers.com> - 0.4.1-1 |
68 |
- Updated to release 0.4.1. |
69 |
|
70 |
* Sun May 08 2005 Dag Wieers <dag@wieers.com> - 0.4.0-1 |
71 |
- Updated to release 0.4.0. |
72 |
|
73 |
* Tue Apr 05 2005 Dag Wieers <dag@wieers.com> - 0.3.3-1 |
74 |
- Initial package. (using DAR) |