22 lines
654 B
Python
22 lines
654 B
Python
# Copyright 2013-2019 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 import *
|
|
|
|
|
|
class Xmore(AutotoolsPackage):
|
|
"""xmore - plain text display program for the X Window System."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xmore"
|
|
url = "https://www.x.org/archive/individual/app/xmore-1.0.2.tar.gz"
|
|
|
|
version('1.0.2', '40b1850494f8af0939a1989c399efa11')
|
|
|
|
depends_on('libxaw')
|
|
depends_on('libxt')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|