summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ks/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-ks/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-ks/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-ks/package.py b/var/spack/repos/builtin/packages/r-ks/package.py
new file mode 100644
index 0000000000..dca118bdf5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-ks/package.py
@@ -0,0 +1,26 @@
+# 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 RKs(RPackage):
+ """Kernel smoothers for univariate and multivariate data."""
+
+ homepage = "https://cran.r-project.org/package=ks"
+ url = "https://cran.r-project.org/src/contrib/Archive/ks/ks_1.11.2.tar.gz"
+
+ version('1.11.2', sha256='9dfd485096e1e67abc7dfcb7b76a83de110dd15bcfeffe5c899605b3a5592961')
+
+ depends_on('r@2.10:', type=('build', 'run'))
+
+ depends_on('r-fnn@1.1:', type=('build', 'run'))
+ depends_on('r-kernlab', type=('build', 'run'))
+ depends_on('r-mclust', type=('build', 'run'))
+ depends_on('r-multicool', type=('build', 'run'))
+ depends_on('r-mvtnorm@1.0:', type=('build', 'run'))
+ depends_on('r-kernsmooth@2.22:', type=('build', 'run'))
+ depends_on('r-matrix', type=('build', 'run'))
+ depends_on('r-mgcv', type=('build', 'run'))