23 lines
948 B
Python
23 lines
948 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 RMunsell(RPackage):
|
|
"""Provides easy access to, and manipulation of, the Munsell colours.
|
|
Provides a mapping between Munsell's original notation (e.g. "5R 5/10") and
|
|
hexadecimal strings suitable for use directly in R graphics. Also provides
|
|
utilities to explore slices through the Munsell colour tree, to transform
|
|
Munsell colours and display colour palettes."""
|
|
|
|
homepage = "https://cran.r-project.org/web/packages/munsell/index.html"
|
|
url = "https://cran.r-project.org/src/contrib/munsell_0.4.3.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/munsell"
|
|
|
|
version('0.4.3', 'ebd205323dc37c948f499ee08be9c476')
|
|
|
|
depends_on('r-colorspace', type=('build', 'run'))
|