
some of these are not resolvable in that there is only an http page available, or a page reported as broken is actually ok, or a page has an SSL error that does not prevent one from visiting (and no good replacement) Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
23 lines
714 B
Python
23 lines
714 B
Python
# Copyright 2013-2021 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 import *
|
|
|
|
|
|
class Fonttosfnt(AutotoolsPackage, XorgPackage):
|
|
"""Wrap a bitmap font in a sfnt (TrueType) wrapper."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/fonttosfnt"
|
|
xorg_mirror_path = "app/fonttosfnt-1.0.4.tar.gz"
|
|
|
|
version('1.0.4', sha256='3873636be5b3b8e4160070e8f9a7a9221b5bd5efbf740d7abaa9092e10732673')
|
|
|
|
depends_on('freetype')
|
|
depends_on('libfontenc')
|
|
|
|
depends_on('xproto')
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|