summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xvinfo/package.py
blob: 87d202e448e90fc745a03a6e2f5107b44079e740 (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
# 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 Xvinfo(AutotoolsPackage, XorgPackage):
    """xvinfo prints out the capabilities of any video adaptors associated
    with the display that are accessible through the X-Video extension."""

    homepage = "http://cgit.freedesktop.org/xorg/app/xvinfo"
    xorg_mirror_path = "app/xvinfo-1.1.3.tar.gz"

    version('1.1.3', sha256='1c1c2f97abfe114389e94399cc7bf3dfd802ed30ad41ba23921d005bd8a6c39f')

    depends_on('libxv')
    depends_on('libx11')

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