summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ecp/package.py
blob: 700c1780e0f57c6d8a78c2b613fbec56a142d596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2020 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 REcp(RPackage):
    """ecp: Non-Parametric Multiple Change-Point Analysis of
       MultivariateData"""

    homepage = "https://cloud.r-project.org/package=ecp"
    url      = "https://cloud.r-project.org/src/contrib/ecp_3.1.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/ecp"

    version('3.1.1', sha256='d2ab194e22e6ab0168222fbccfcf2e25c6cd51a73edc959086b0c6e0a7410268')

    depends_on('r@3.00:', type=('build', 'run'))
    depends_on('r-rcpp', type=('build', 'run'))