summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-xopen/package.py
blob: 1db64912f7583887fa583ed5d143c5a68a5e18be (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-2023 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 RXopen(RPackage):
    """Open System Files, 'URLs', Anything.

    Cross platform solution to open files, directories or 'URLs' with their
    associated programs."""

    cran = "xopen"

    license("MIT")

    version("1.0.0", sha256="e207603844d69c226142be95281ba2f4a056b9d8cbfae7791ba60535637b3bef")

    depends_on("r@3.1:", type=("build", "run"))
    depends_on("r-processx", type=("build", "run"))