new package: r-ragg (#33172)

This commit is contained in:
Glenn Johnson 2022-10-10 20:38:06 -05:00 committed by GitHub
parent acf6acc93c
commit 87536ab107
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,26 @@
# Copyright 2013-2022 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 RRagg(RPackage):
"""Graphic Devices Based on AGG.
Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D drawing
library. The 'ragg' package provides a set of graphic devices based on AGG
to use as alternative to the raster devices provided through the
'grDevices' package."""
cran = "ragg"
version("1.2.3", sha256="976da0007ef0d4dbadda4734727b539671b65c1eff4ff392d734f4e2c846f2b2")
depends_on("r-systemfonts@1.0.3:", type=("build", "run"))
depends_on("r-textshaping@0.3.0:", type=("build", "run"))
depends_on("freetype")
depends_on("libpng")
depends_on("libtiff")
depends_on("jpeg")