summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-kernsmooth/package.py
blob: d39ea1e4ff760fd07e53c31b30a7b63a3c31fbf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2019 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 RKernsmooth(RPackage):
    """Functions for kernel smoothing (and density estimation)."""

    homepage = "https://cloud.r-project.org/package=KernSmooth"
    url      = "https://cloud.r-project.org/src/contrib/KernSmooth_2.23-15.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/KernSmooth"

    version('2.23-15', '746cdf26dec72004cf19978e87dcc982')

    depends_on('r@2.5.0:', type=('build', 'run'))