20 lines
661 B
Python
20 lines
661 B
Python
# 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 RSnow(RPackage):
|
|
"""Support for simple parallel computing in R."""
|
|
|
|
homepage = "https://cran.r-project.org/web/packages/snow/index.html"
|
|
url = "https://cran.r-project.org/src/contrib/snow_0.4-2.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/snow"
|
|
|
|
version('0.4-2', 'afc7b0dfd4518aedb6fc81712fd2ac70')
|
|
|
|
depends_on('r-rmpi', type='run')
|
|
depends_on('r@2.13.1:', type=('build', 'run'))
|