summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libxxf86dga/package.py
blob: 6980c2ff3541cc0eaed8f0d63706939508efc954 (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
26
# Copyright 2013-2023 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.package import *


class Libxxf86dga(AutotoolsPackage, XorgPackage):
    """libXxf86dga - Client library for the XFree86-DGA extension."""

    homepage = "https://cgit.freedesktop.org/xorg/lib/libXxf86dga"
    xorg_mirror_path = "lib/libXxf86dga-1.1.4.tar.gz"

    license("MIT")

    version("1.1.4", sha256="e6361620a15ceba666901ca8423e8be0c6ed0271a7088742009160349173766b")

    depends_on("libx11")
    depends_on("libxext")

    depends_on("xproto")
    depends_on("xextproto")
    depends_on("xf86dgaproto@2.0.99.2:")
    depends_on("pkgconfig", type="build")
    depends_on("util-macros", type="build")