summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xmore/package.py
blob: 41fbe5f6f25cac5ce7a8752ee1212dcb04ecc540 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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 Xmore(AutotoolsPackage, XorgPackage):
    """xmore - plain text display program for the X Window System."""

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

    version("1.0.2", sha256="7371631d05986f1111f2026a77e43e048519738cfcc493c6222b66e7b0f309c0")

    depends_on("libxaw")
    depends_on("libxt")

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