summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libxxf86misc/package.py
blob: 3e558cca3ad519c6565b9bc19fb59f6e246d2e08 (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
# 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 Libxxf86misc(AutotoolsPackage):
    """libXxf86misc - Extension library for the XFree86-Misc X extension."""

    homepage = "http://cgit.freedesktop.org/xorg/lib/libXxf86misc"
    url      = "https://www.x.org/archive/individual/lib/libXxf86misc-1.0.3.tar.gz"

    version('1.0.3', 'c8d8743e146bcd2aa9856117ac5ef6c0')

    depends_on('libx11')
    depends_on('libxext')

    depends_on('xproto', type='build')
    depends_on('xextproto', type='build')
    depends_on('xf86miscproto', type='build')
    depends_on('pkgconfig', type='build')
    depends_on('util-macros', type='build')