The cURL package contains a utility and a library used for transferring files with URL syntax to any of the following protocols: FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. Its ability to both download and upload files can be incorporated into other programs to support functions like streaming media.
This package is known to build and work properly using an LFS-7.5 platform.
Download (HTTP): http://curl.haxx.se/download/curl-7.35.0.tar.bz2
Download MD5 sum: c18fbdd031adb0529ae09fce399f2d10
Download size: 2.7 MB
Estimated disk space required: 31 MB (additional 7 MB for tests)
Estimated build time: 0.5 SBU (additional 8.9 SBU for tests)
Certificate Authority Certificates and OpenSSL-1.0.1f or GnuTLS-3.2.11
c-ares, libidn-1.28, libmetalink, libssh2, MIT Kerberos V5-1.12.1, OpenLDAP-2.4.39 and SPNEGO
stunnel-4.56 (for the HTTPS and FTPS tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/curl
Install cURL by running the following commands:
./configure --prefix=/usr \ --disable-static \ --enable-threaded-resolver && make
To test the results, issue: make test.
Now, as the root
user:
make install && find docs \( -name "Makefile*" -o -name "*.1" -o -name "*.3" \) -exec rm {} \; && install -v -d -m755 /usr/share/doc/curl-7.35.0 && cp -v -R docs/* /usr/share/doc/curl-7.35.0
--disable-static
: This
switch prevents installation of static versions of the libraries.
--enable-threaded-resolver
:
This switch enables cURL's builtin
threaded DNS resolver.
--with-gssapi
: This parameter adds
Kerberos 5 support to libcurl
.
--without-ssl --with-gnutls
: Use to
build with GnuTLS support instead
of OpenSSL for SSL/TLS.
find docs \( -name "Makefile*" -o
-name "*.1" -o -name "*.3" \) -exec rm {} \;: This
command removes Makefiles
and man
files from the documentation directory that would otherwise be
installed by the commands that follow.
Last updated on 2014-02-18 18:25:11 -0800