spack/var/spack/repos/builtin/packages/r-rook/package.py
Harmen Stoppels 7b9f8abce5
Add depends_on([c,cxx,fortran]) (#45217)
Add language dependencies `c`, `cxx`, and `fortran`.

These `depends_on` statements are auto-generated based on file extensions found
in source tarballs/zipfiles.

The `# generated` comment can be removed by package maintainers after
validating correctness.
2024-07-17 16:07:43 +02:00

25 lines
844 B
Python

# Copyright 2013-2024 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.package import *
class RRook(RPackage):
"""Rook - a web server interface for R.
This package contains the Rook specification and convenience software for
building and running Rook applications. To get started, be sure and read
the 'Rook' help file first."""
cran = "Rook"
version("1.2", sha256="c79ae4b5164daffd4e7cf74bd23c1b08a3948bf343dfe9570d57f39cbf8e5f62")
version("1.1-1", sha256="00f4ecfa4c5c57018acbb749080c07154549a6ecaa8d4130dd9de79427504903")
depends_on("c", type="build") # generated
depends_on("r@2.13.0:", type=("build", "run"))
depends_on("r-brew", type=("build", "run"))