summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xrandr/package.py
blob: 544e05d173f9af828d0b920b65641888ec9353ec (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-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 Xrandr(AutotoolsPackage, XorgPackage):
    """xrandr - primitive command line interface to X11 Resize, Rotate, and
    Reflect (RandR) extension."""

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

    version('1.5.0', sha256='ddfe8e7866149c24ccce8e6aaa0623218ae19130c2859cadcaa4228d8bb4a46d')

    depends_on('libxrandr@1.5:')
    depends_on('libxrender')
    depends_on('libx11')
    depends_on('randrproto')

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