-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcadaver.spec.in
55 lines (43 loc) · 1.31 KB
/
cadaver.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Name: cadaver
Version: @VERSION@
Release: 1
Summary: Command-line WebDAV client
License: GPL
Group: Applications/Internet
Source: http://www.webdav.org/cadaver/%{name}-%{version}.tar.gz
URL: http://www.webdav.org/cadaver/
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildPrereq: libxml2-devel, openssl-devel, readline-devel
%description
cadaver is a command-line WebDAV client, with support for file upload,
download, on-screen display, in-place editing, namespace operations
(move/copy), collection creation and deletion, property manipulation,
and resource locking.
%prep
%setup -q
%build
# cadaver doesn't use neon's zlib support, so disable it.
# force the XML parser to be libxml2
%configure --with-libxml2 --with-ssl --without-zlib
make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/*
%doc NEWS TODO COPYING README ChangeLog
%{_mandir}/*/*
%changelog
* Wed May 1 2002 Joe Orton <[email protected]>
- add man page
* Sat Jan 19 2002 Joe Orton <[email protected]>
- updated description
* Mon Nov 19 2001 Joe Orton <[email protected]>
- Merge changes from Nalin Dahyabhai <[email protected]>.
* Fri Feb 11 2000 Joe Orton <[email protected]>
- Text descriptions modified
* Thu Feb 10 2000 Lee Mallabone <[email protected]>
- Initial creation.