summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-spatial/package.py
blob: bb6384eeb2a0f81858e1f0e022d2c8469ded8846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2021 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 RSpatial(RPackage):
    """Functions for Kriging and Point Pattern Analysis

    Functions for kriging and point pattern analysis."""

    homepage = "https://cloud.r-project.org/package=spatial"
    url      = "https://cloud.r-project.org/src/contrib/spatial_7.3-11.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/spatial"

    version('7.3-12', sha256='7639039ee7407bd088e1b253376b2cb4fcdf4cc9124d6b48e4119d5cda872d63')
    version('7.3-11', sha256='624448d2ac22e1798097d09fc5dc4605908a33f490b8ec971fc6ea318a445c11')

    depends_on('r@3.0.0:', type=('build', 'run'))
    depends_on('r-mass', when='@:7.3-11', type=('build', 'run'))