summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fonttosfnt/package.py
blob: f595947a2217961cf8fcdc042ed13f42c09d0f96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2019 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):
    """Wrap a bitmap font in a sfnt (TrueType) wrapper."""

    homepage = "http://cgit.freedesktop.org/xorg/app/fonttosfnt"
    url      = "https://www.x.org/archive/individual/app/fonttosfnt-1.0.4.tar.gz"

    version('1.0.4', 'ba77fd047a9cca400f17db8c46b06ce8')

    depends_on('freetype')
    depends_on('libfontenc')

    depends_on('xproto', type='build')
    depends_on('pkgconfig', type='build')
    depends_on('util-macros', type='build')