summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-cubist/package.py
blob: 1a89f3c21f05b4f22a6af91c865129e56e44a68a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RCubist(RPackage):
    """Regression modeling using rules with added instance-based corrections"""

    homepage = "https://cran.r-project.org/package=Cubist"
    url      = "https://cran.r-project.org/src/contrib/Cubist_0.0.19.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/Cubist"

    version('0.0.19', 'bf9364f655536ec03717fd2ad6223a47')

    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-reshape2', type=('build', 'run'))