2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 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)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2020-04-15 11:54:16 +08:00
|
|
|
class Compiz(AutotoolsPackage, XorgPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""compiz - OpenGL window and compositing manager.
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
Compiz is an OpenGL compositing manager that use
|
|
|
|
GLX_EXT_texture_from_pixmap for binding redirected top-level
|
|
|
|
windows to texture objects. It has a flexible plug-in system
|
|
|
|
and it is designed to run well on most graphics hardware."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "http://www.compiz.org/"
|
2020-04-15 11:54:16 +08:00
|
|
|
xorg_mirror_path = "app/compiz-0.7.8.tar.gz"
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.7.8', sha256='b46f52b776cc78e85357a07688d04b36ec19c65eadeaf6f6cfcca7b8515e6503')
|
2016-10-12 00:42:20 +08:00
|
|
|
|
|
|
|
depends_on('libxcb')
|
|
|
|
depends_on('libxcomposite')
|
|
|
|
depends_on('libxfixes')
|
|
|
|
depends_on('libxdamage')
|
|
|
|
depends_on('libxrandr')
|
|
|
|
depends_on('libxinerama')
|
|
|
|
depends_on('libice')
|
|
|
|
depends_on('libsm')
|
|
|
|
depends_on('libxml2')
|
|
|
|
depends_on('libxslt')
|
|
|
|
|
|
|
|
# TODO: add dependencies
|
|
|
|
# libstartup-notification-1.0 >= 0.7
|
|
|
|
depends_on('libxrender')
|
|
|
|
depends_on('libpng')
|
|
|
|
depends_on('glib')
|
|
|
|
depends_on('gconf')
|