2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-16 15:56:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2020-04-15 11:54:16 +08:00
|
|
|
class Gccmakedep(AutotoolsPackage, XorgPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""X.org gccmakedep utilities."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/util/gccmakedep/"
|
2020-04-15 11:54:16 +08:00
|
|
|
xorg_mirror_path = "util/gccmakedep-1.0.3.tar.gz"
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("MIT")
|
|
|
|
|
2024-03-13 04:34:17 +08:00
|
|
|
version("1.0.4", sha256="5f36cde3f7cce8150a6eeb8026759977be523068a64fad899776122c3f03311f")
|
2022-07-31 06:19:18 +08:00
|
|
|
version("1.0.3", sha256="f9e2e7a590e27f84b6708ab7a81e546399b949bf652fb9b95193e0e543e6a548")
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2022-07-31 06:19:18 +08:00
|
|
|
depends_on("pkgconfig", type="build")
|