summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-snow/package.py
blob: 17a02046f6e68901e77a0fae568c8e8a7b5faae7 (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
# Copyright 2013-2022 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 RSnow(RPackage):
    """Support for simple parallel computing in R."""

    homepage = "https://cloud.r-project.org/package=snow"
    url      = "https://cloud.r-project.org/src/contrib/snow_0.4-2.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/snow"

    version('0.4-3', sha256='8512537daf334ea2b8074dbb80cf5e959a403a78d68bc1e97664e8a4f64576d8')
    version('0.4-2', sha256='ee070187aea3607c9ca6235399b3db3e181348692405d038e962e06aefccabd7')

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

    @run_after('install')
    def install_wrapper(self):
        mkdir(self.prefix.bin)
        install('inst/RMPISNOW', self.prefix.bin)