summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mda/package.py
blob: f59f09844e999b9e3934926c3b2c73d4271bc8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RMda(RPackage):
    """Mixture and flexible discriminant analysis, multivariate adaptive
    regression splines (MARS), BRUTO."""

    homepage = "https://cran.r-project.org/package=mda"
    url      = "https://cran.r-project.org/src/contrib/mda_0.4-9.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/mda"

    version('0.4-9', '2ce1446c4a013e0ebcc1099a00269ad9')

    depends_on('r@1.9.0:')

    depends_on('r-class', type=('build', 'run'))