
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
23 lines
845 B
Python
23 lines
845 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 Mkfontdir(AutotoolsPackage, XorgPackage):
|
|
"""mkfontdir creates the fonts.dir files needed by the legacy X server
|
|
core font system. The current implementation is a simple wrapper script
|
|
around the mkfontscale program, which must be built and installed first."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/mkfontdir"
|
|
xorg_mirror_path = "app/mkfontdir-1.0.7.tar.gz"
|
|
|
|
version('1.0.7', sha256='bccc5fb7af1b614eabe4a22766758c87bfc36d66191d08c19d2fa97674b7b5b7')
|
|
|
|
depends_on('mkfontscale', type='run')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|