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 XcbUtil(AutotoolsPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""The XCB util modules provides a number of libraries which sit on top
|
|
|
|
of libxcb, the core X protocol library, and some of the extension
|
|
|
|
libraries. These experimental libraries provide convenience functions
|
|
|
|
and interfaces which make the raw X protocol more usable. Some of the
|
|
|
|
libraries also provide client-side code which is not strictly part of
|
|
|
|
the X protocol but which have traditionally been provided by Xlib."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "https://xcb.freedesktop.org/"
|
|
|
|
url = "https://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.gz"
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
version('0.4.0', '157d82738aa89934b6adaf3ca508a0f5')
|
|
|
|
|
|
|
|
depends_on('libxcb@1.4:')
|
|
|
|
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|