ed853685b0
Support for simple features, a standardized way to encode spatial vector data. Binds to 'GDAL' for reading and writing data, to 'GEOS' for geometrical operations, and to 'PROJ' for projection conversions and datum transformations. Optionally uses the 's2' package for spherical geometry operations on geographic coordinates.
22 lines
631 B
Makefile
22 lines
631 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/08/08 23:12:18 brook Exp $
|
|
|
|
R_PKGNAME= sf
|
|
R_PKGVER= 0.9-5
|
|
CATEGORIES= geography
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Simple Features for R
|
|
LICENSE= mit OR gnu-gpl-v2
|
|
|
|
USE_LANGUAGES+= c c++11
|
|
|
|
DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr
|
|
DEPENDS+= R-rgeos>=0.5.2:../../geography/R-rgeos
|
|
DEPENDS+= R-DBI>=0.8:../../math/R-DBI
|
|
DEPENDS+= R-classInt>=0.4.1:../../math/R-classInt
|
|
DEPENDS+= R-units>=0.6.0:../../math/R-units
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../devel/R-Rcpp/buildlink3.mk"
|
|
.include "../../geography/gdal-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|