spack/var/spack/repos/builtin/packages/libxrandr/package.py
Axel Huebl d9630b572a x.org packages: mirror mixin
overhaul all x.org packages to use available mirrors.
2020-04-15 14:44:13 -07:00

26 lines
862 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 Libxrandr(AutotoolsPackage, XorgPackage):
"""libXrandr - X Resize, Rotate and Reflection extension library."""
homepage = "http://cgit.freedesktop.org/xorg/lib/libXrandr"
xorg_mirror_path = "lib/libXrandr-1.5.0.tar.gz"
version('1.5.0', sha256='1b594a149e6b124aab7149446f2fd886461e2935eca8dca43fe83a70cf8ec451')
depends_on('libx11@1.6:')
depends_on('libxext')
depends_on('libxrender')
depends_on('randrproto@1.5:', type='build')
depends_on('xextproto', type='build')
depends_on('renderproto', type='build')
depends_on('pkgconfig', type='build')
depends_on('util-macros', type='build')