summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xrx/package.py
blob: abf5f692166ac1c8820589a802e11197af8b833e (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
27
28
29
30
31
32
# 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 Xrx(AutotoolsPackage, XorgPackage):
    """The remote execution (RX) service specifies a MIME format for invoking
    applications remotely, for example via a World Wide Web browser.  This
    RX format specifies a syntax for listing network services required by
    the application, for example an X display server.  The requesting Web
    browser must identify specific instances of the services in the request
    to invoke the application."""

    homepage = "https://cgit.freedesktop.org/xorg/app/xrx"
    xorg_mirror_path = "app/xrx-1.0.4.tar.gz"

    version("1.0.4", sha256="1ffa1c2af28587c6ed7ded3af2e62e93bad8f9900423d09c45b1d59449d15134")

    depends_on("libx11")
    depends_on("libxt")
    depends_on("libxext")
    depends_on("libxau")
    depends_on("libice")
    depends_on("libxaw")

    depends_on("xtrans")
    depends_on("xproxymanagementprotocol")
    depends_on("pkgconfig", type="build")
    depends_on("util-macros", type="build")