26 lines
951 B
Python
26 lines
951 B
Python
# Copyright 2013-2020 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 Xfsinfo(AutotoolsPackage, XorgPackage):
|
|
"""xfsinfo is a utility for displaying information about an X font
|
|
server. It is used to examine the capabilities of a server, the
|
|
predefined values for various parameters used in communicating between
|
|
clients and the server, and the font catalogues and alternate servers
|
|
that are available."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xfsinfo"
|
|
xorg_mirror_path = "app/xfsinfo-1.0.5.tar.gz"
|
|
|
|
version('1.0.5', sha256='56a0492ed2cde272dc8f4cff4ba0970ccb900e51c10bb8ec62747483d095fd69')
|
|
|
|
depends_on('libfs')
|
|
|
|
depends_on('xproto@7.0.17:', type='build')
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|