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 Iceauth(AutotoolsPackage, XorgPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""The iceauth program is used to edit and display the authorization
|
|
|
|
information used in connecting with ICE. It operates very much
|
|
|
|
like the xauth program for X11 connection authentication records."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2021-08-27 15:16:46 +08:00
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/iceauth"
|
2020-04-15 11:54:16 +08:00
|
|
|
xorg_mirror_path = "app/iceauth-1.0.7.tar.gz"
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("MIT")
|
|
|
|
|
2023-03-08 07:02:45 +08:00
|
|
|
version("1.0.9", sha256="5ca274cf210453e7d7cf5c827a2fbc92149df83824f99a27cde17e1f20324dc6")
|
2019-10-11 13:44:41 +08:00
|
|
|
version("1.0.7", sha256="6c9706cce276609876e768759ed4ee3b447cd17af4a61f9b5a374c7dda9696d8")
|
2016-10-12 00:42:20 +08:00
|
|
|
|
|
|
|
depends_on("libice")
|
|
|
|
|
2021-01-06 15:56:22 +08:00
|
|
|
depends_on("xproto@7.0.22:")
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on("pkgconfig", type="build")
|
2016-10-12 00:42:20 +08:00
|
|
|
depends_on("util-macros", type="build")
|