1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

math/R-cran-wk: Add new port

Provides a minimal R and C++ API for parsing well-known binary and
well-known text representation of geometries to and from R-native
formats. Well-known binary is compact and fast to parse; well-known
text is human-readable and is useful for writing tests. These formats
are only useful in R if the information they contain can be accessed
in R, for which high-performance functions are provided here.

WWW: https://cran.r-project.org/web/packages/wk/
This commit is contained in:
TAKATSU Tomonari 2021-06-11 01:13:45 +09:00
parent 2d8367fba1
commit 62845ed5f9
4 changed files with 29 additions and 0 deletions

View File

@ -122,6 +122,7 @@
SUBDIR += R-cran-truncnorm
SUBDIR += R-cran-units
SUBDIR += R-cran-uroot
SUBDIR += R-cran-wk
SUBDIR += R-cran-xts
SUBDIR += R-cran-zoo
SUBDIR += SCIP

17
math/R-cran-wk/Makefile Normal file
View File

@ -0,0 +1,17 @@
PORTNAME= wk
PORTVERSION= 0.4.1
CATEGORIES= math
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Lightweight Well-Known Geometry Parsing
LICENSE= MIT
CRAN_DEPENDS= R-cran-cpp11>0:devel/R-cran-cpp11
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= compiler:c++11-lang cran:auto-plist,compiles
.include <bsd.port.mk>

3
math/R-cran-wk/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1623340892
SHA256 (wk_0.4.1.tar.gz) = daa7351af0bd657740972016906c686f335b8fa922ba10250e5000ddc2bb8950
SIZE (wk_0.4.1.tar.gz) = 111779

8
math/R-cran-wk/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
Provides a minimal R and C++ API for parsing well-known binary and
well-known text representation of geometries to and from R-native
formats. Well-known binary is compact and fast to parse; well-known
text is human-readable and is useful for writing tests. These formats
are only useful in R if the information they contain can be accessed
in R, for which high-performance functions are provided here.
WWW: https://cran.r-project.org/web/packages/wk/