24 lines
754 B
Python
24 lines
754 B
Python
# Copyright Spack Project Developers. See 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://gitlab.freedesktop.org/xorg/app/xmore"
|
|
xorg_mirror_path = "app/xmore-1.0.2.tar.gz"
|
|
|
|
version("1.0.3", sha256="00e2f55ce4d2699a97f70060d309898c92ed2a42b9e16f21047a3654432a92b6")
|
|
version("1.0.2", sha256="7371631d05986f1111f2026a77e43e048519738cfcc493c6222b66e7b0f309c0")
|
|
|
|
depends_on("c", type="build") # generated
|
|
|
|
depends_on("libxaw")
|
|
depends_on("libxt")
|
|
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|