29 lines
1.1 KiB
Python
29 lines
1.1 KiB
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 Xev(AutotoolsPackage):
|
|
"""xev creates a window and then asks the X server to send it X11 events
|
|
whenever anything happens to the window (such as it being moved,
|
|
resized, typed in, clicked in, etc.). You can also attach it to an
|
|
existing window. It is useful for seeing what causes events to occur
|
|
and to display the information that they contain; it is essentially a
|
|
debugging and development tool, and should not be needed in normal
|
|
usage."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xev"
|
|
url = "https://www.x.org/archive/individual/app/xev-1.2.2.tar.gz"
|
|
|
|
version('1.2.2', 'fdb374f77cdad8e104b989a0148c4c1f')
|
|
|
|
depends_on('libxrandr@1.2:')
|
|
depends_on('libx11')
|
|
|
|
depends_on('xproto@7.0.17:', type='build')
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|