blob: a1b69f5f49e4982b5b18847b4beb9b18106cdd1f (
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
29
30
31
32
33
34
35
36
37
|
# Copyright 2013-2024 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 Graphite2(CMakePackage):
"""Graphite is a system that can be used to create "smart fonts" capable of
displaying writing systems with various complex behaviors. A smart font
contains not only letter shapes but also additional instructions indicating
how to combine and position the letters in complex ways."""
homepage = (
"https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home"
)
url = "https://github.com/silnrsi/graphite/releases/download/1.3.13/graphite2-1.3.13.tgz"
license("LGPL-2.1-or-later OR MPL-1.1")
version("1.3.14", sha256="f99d1c13aa5fa296898a181dff9b82fb25f6cc0933dbaa7a475d8109bd54209d")
version("1.3.13", sha256="dd63e169b0d3cf954b397c122551ab9343e0696fb2045e1b326db0202d875f06")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("python@3.6:", type="test")
depends_on("freetype")
patch("regparm.patch")
@run_after("install")
def darwin_fix(self):
# The shared library is not installed correctly on Darwin; fix this
if self.spec.satisfies("platform=darwin"):
fix_darwin_install_name(self.prefix.lib)
|