summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/appres/package.py
blob: ab798eb4c22f9a8a08287c77d7795fc41df524b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2013-2018 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 Appres(AutotoolsPackage):
    """The appres program prints the resources seen by an application (or
    subhierarchy of an application) with the specified class and instance
    names.  It can be used to determine which resources a particular
    program will load."""

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

    version('1.0.4', 'f82aabe6bbb8960781b63c6945bb361b')

    depends_on('libx11')
    depends_on('libxt')

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