summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-gwmodel/package.py
blob: dfbcaf9b890dcaa1d8bef2974ce2335d59933a22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 RGwmodel(RPackage):
    """GWmodel: Geographically-Weighted Models"""

    homepage = "http://gwr.nuim.ie/"
    url      = "https://cran.r-project.org/src/contrib/GWmodel_2.0-9.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/GWmodel"

    version('2.0-9', sha256='b479af2c19d4aec30f1883d00193d52e342c609c1badcb51cc0344e4404cffa7')

    depends_on('r@3.0.0:', type=('build', 'run'))
    depends_on('r-maptools@0.5-2:', type=('build', 'run'))
    depends_on('r-rcpp', type=('build', 'run'))
    depends_on('r-rcpparmadillo', type=('build', 'run'))
    depends_on('r-robustbase', type=('build', 'run'))
    depends_on('r-sp', type=('build', 'run'))
    depends_on('r-spacetime', type=('build', 'run'))
    depends_on('r-spatialreg', type=('build', 'run'))
    depends_on('r-spdep', type=('build', 'run'))