2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-05 06:30:05 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-07-05 06:30:05 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class RMunsell(RPackage):
|
2016-07-05 06:30:05 +08:00
|
|
|
"""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"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/munsell"
|
2016-07-05 06:30:05 +08:00
|
|
|
|
|
|
|
version('0.4.3', 'ebd205323dc37c948f499ee08be9c476')
|
|
|
|
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('r-colorspace', type=('build', 'run'))
|