blob: c14f5f502749f3d531184415fbe09e352969f862 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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 RTextshaping(RPackage):
"""Bindings to the 'HarfBuzz' and 'Fribidi' Libraries for Text Shaping.
Provides access to the text shaping functionality in the 'HarfBuzz' library
and the bidirectional algorithm in the 'Fribidi' library. 'textshaping' is
a low-level utility package mainly for graphic devices that expands upon
the font tool-set provided by the 'systemfonts' package."""
cran = "textshaping"
license("MIT")
version("0.3.6", sha256="80e2c087962f55ce2811fbc798b09f5638c06c6b28c10cd3cb3827005b902ada")
depends_on("r@3.2.0:", type=("build", "run"))
depends_on("r-systemfonts@1.0.0:", type=("build", "run"))
depends_on("r-cpp11@0.2.1:", type=("build", "run"))
depends_on("freetype")
depends_on("harfbuzz")
depends_on("fribidi")
|