summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-plot3d/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-plot3d/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-plot3d/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-plot3d/package.py b/var/spack/repos/builtin/packages/r-plot3d/package.py
new file mode 100644
index 0000000000..74883c1f2f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-plot3d/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2018 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 import *
+
+
+class RPlot3d(RPackage):
+ """Functions for viewing 2-D and 3-D data, including perspective plots,
+ slice plots, surface plots, scatter plots, etc. Includes data sets from
+ oceanography."""
+
+ homepage = "https://CRAN.R-project.org/package=plot3D"
+ url = "https://cran.r-project.org/src/contrib/plot3D_1.1.1.tar.gz"
+ list_url = "https://cran.r-project.org/src/contrib/Archive/plot3D"
+
+ version('1.1.1', '5135aa1f3cf6106f2ded3f393a24e75d')
+
+ depends_on('r-misc3d', type=('build', 'run'))