summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-stars/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-stars/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-stars/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-stars/package.py b/var/spack/repos/builtin/packages/r-stars/package.py
new file mode 100644
index 0000000000..88b667642c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-stars/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class RStars(RPackage):
+ """Spatiotemporal Arrays, Raster and Vector Data Cubes.
+
+ Reading, manipulating, writing and plotting spatiotemporal arrays (raster
+ and vector data cubes) in 'R', using 'GDAL' bindings provided by 'sf', and
+ 'NetCDF' bindings by 'ncmeta' and 'RNetCDF'."""
+
+ cran = "stars"
+
+ version("0.5-6", sha256="e0413c95423635f7f7b2520813382e911257da8ace9b743da9fe3eab568a9461")
+
+ depends_on("r@3.3.0:", type=("build", "run"))
+ depends_on("r-abind", type=("build", "run"))
+ depends_on("r-sf@1.0-8:", type=("build", "run"))
+ depends_on("r-classint@0.4-1:", type=("build", "run"))
+ depends_on("r-lwgeom", type=("build", "run"))
+ depends_on("r-rlang", type=("build", "run"))
+ depends_on("r-units", type=("build", "run"))