# 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 Xfsinfo(AutotoolsPackage): """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" url = "https://www.x.org/archive/individual/app/xfsinfo-1.0.5.tar.gz" version('1.0.5', '36b64a3f37b87c759c5d17634e129fb9') depends_on('libfs') depends_on('xproto@7.0.17:', type='build') depends_on('pkgconfig', type='build') depends_on('util-macros', type='build')