summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2022-10-10 20:38:06 -0500
committerGitHub <noreply@github.com>2022-10-10 19:38:06 -0600
commit87536ab107f8c286335233fddde7ad8a80b52f0e (patch)
tree64d1244500266b968ff5212286e45e5e79ee122d
parentacf6acc93c070c62e12d14adef530afd8eaf504c (diff)
downloadspack-87536ab107f8c286335233fddde7ad8a80b52f0e.tar.gz
spack-87536ab107f8c286335233fddde7ad8a80b52f0e.tar.bz2
spack-87536ab107f8c286335233fddde7ad8a80b52f0e.tar.xz
spack-87536ab107f8c286335233fddde7ad8a80b52f0e.zip
new package: r-ragg (#33172)
-rw-r--r--var/spack/repos/builtin/packages/r-ragg/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-ragg/package.py b/var/spack/repos/builtin/packages/r-ragg/package.py
new file mode 100644
index 0000000000..99eee42ec6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-ragg/package.py
@@ -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")