A wrapper for 'libcurl' <http://curl.haxx.se/libcurl/> Provides functions to allow one to compose general HTTP requests and provides convenient functions to fetch URIs, get & post forms, etc. and process the results returned by the Web server. This provides a great deal of control over the HTTP/FTP/... connection and the form of the request while providing a higher-level interface than is available just using R socket connections. Additionally, the underlying implementation is robust and extensive, supporting FTP/FTPS/TFTP (uploads and downloads), SSL/HTTPS, telnet, dict, ldap, and also supports cookies, redirects, authentication, etc.
17 lines
454 B
Makefile
17 lines
454 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/08/07 01:54:20 brook Exp $
|
|
|
|
R_PKGNAME= RCurl
|
|
R_PKGVER= 1.98-1.1
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= General Network (HTTP/FTP/...) Client Interface for R
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../math/R-bitops/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../www/nghttp2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|