summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-utils/package.py
blob: 5ea5e2d63c2897b6a01988ce8f56ee93d306aeb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RUtils(RPackage):
    """Utility functions useful when programming and
    developing R packages."""

    homepage = "https://github.com/HenrikBengtsson/R.utils"
    url      = "https://cran.rstudio.com/src/contrib/R.utils_2.5.0.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/R.utils"

    version('2.5.0', 'a728ef3ceb35cafc4c39ea577cecc38b')

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