summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-randomfieldsutils/package.py
blob: a6c0acaf4ed4b4d9c94dc7049b7a108c68e50b52 (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 RRandomfieldsutils(RPackage):
    """Various utilities are provided that might be used in spatial statistics
       and elsewhere. It delivers a method for solving linear equations that
       checks the sparsity of the matrix before any algorithm is used.
       Furthermore, it includes the Struve functions."""

    homepage = "https://cran.r-project.org/web/packages/RandomFieldsUtils"
    url = "https://cran.r-project.org/src/contrib/RandomFieldsUtils_0.3.25.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/RandomFieldsUtils"

    version('0.3.25', '026c15a23296c9726012135891f016d5')

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