2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-16 15:56:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-16 15:56:53 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Twm(AutotoolsPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""twm is a window manager for the X Window System. It provides
|
|
|
|
titlebars, shaped windows, several forms of icon management,
|
|
|
|
user-defined macro functions, click-to-type and pointer-driven
|
|
|
|
keyboard focus, and user-specified key and pointer button bindings."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/twm"
|
|
|
|
url = "https://www.x.org/archive/individual/app/twm-1.0.9.tar.gz"
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
version('1.0.9', 'e98fcb32f774ac1ff7bf82101b79f61e')
|
|
|
|
|
|
|
|
depends_on('libx11')
|
|
|
|
depends_on('libxext')
|
|
|
|
depends_on('libxt')
|
|
|
|
depends_on('libxmu')
|
|
|
|
depends_on('libice')
|
|
|
|
depends_on('libsm')
|
|
|
|
|
|
|
|
depends_on('xproto@7.0.17:', type='build')
|
|
|
|
depends_on('bison', type='build')
|
|
|
|
depends_on('flex', type='build')
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2016-10-12 00:42:20 +08:00
|
|
|
depends_on('util-macros', type='build')
|