]> git.pld-linux.org Git - packages/curl.git/blame - curl.spec
- updated to 6.3.1,
[packages/curl.git] / curl.spec
CommitLineData
5767e1a7 1Summary: A utility for getting files from remote servers (FTP, HTTP, and others).
2Name: curl
3Version: 6.3.1
4Release: 1
5Copyright: MPL
6Vendor: Daniel Stenberg <Daniel.Stenberg@sth.frontec.se>
7Group: Applications/Networking
8Group(pl): Aplikacje/Sieciowe
9Source: http://curl.haxx.nu/stuff/%{name}-%{version}.tar.gz
10URL: http://curl.haxx.nu/
11BuildRequires: openssl-devel
12BuildRoot: /tmp/%{name}-%{version}-root
81714278 13
14%description
5767e1a7 15cURL is a tool for getting files with URL syntax, supporting FTP, HTTP,
16HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. cURL supports HTTP POST, HTTP
17PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password
18authentication and a busload of other useful tricks. The main use for curl
19is when you want to get or send files automatically to or from a site using
20one of the supported protocols.
21
22cURL is a tool for getting files from FTP, HTTP, Gopher, Telnet, and Dict
23servers, using any of the supported protocols. cURL is designed to work
24without user interaction or any kind of interactivity. cURL offers many
25useful capabilities, like proxy support, user authentication, FTP upload,
26HTTP post, and file transfer resume. Note that while cURL also supports the
27SSL protocol, this version is compiled without SSL (https:) support.
81714278 28
29%prep
81714278 30%setup -q
31
32%build
5767e1a7 33LDFLAGS="-s"; export LDFLAGS
34%configure \
35 --with-ssl=/usr
81714278 36make
37
38%install
5767e1a7 39rm -rf $RPM_BUILD_ROOT
40make DESTDIR=$RPM_BUILD_ROOT install
81714278 41
5767e1a7 42gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man1/* \
43 README* CHANGES CONTRIBUTE FAQ LEGAL MPL-1.0.txt RESOURCES TODO
81714278 44%clean
45rm -rf $RPM_BUILD_ROOT
81714278 46
47%files
5767e1a7 48%defattr(644,root,root,755)
49%doc *.gz
50%attr(755,root,root) %{_bindir}/curl
51%{_mandir}/man1/*
This page took 0.050347 seconds and 4 git commands to generate.