summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-base64enc/package.py
blob: 1ba6fea31261fe9bbfed9115a52a067faba89565 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RBase64enc(RPackage):
    """Tools for base64 encoding.

    This package provides tools for handling base64 encoding. It is more
    flexible than the orphaned base64 package."""

    cran = "base64enc"

    license("GPL-2.0-only OR GPL-3.0-only")

    version("0.1-3", sha256="6d856d8a364bcdc499a0bf38bfd283b7c743d08f0b288174fba7dbf0a04b688d")

    depends_on("r@2.9.0:", type=("build", "run"))