summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/compiz/package.py
blob: 36bd995dae8a19b969bee70d5453ac70a1d76fb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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 Compiz(AutotoolsPackage):
    """compiz - OpenGL window and compositing manager.

    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."""

    homepage = "http://www.compiz.org/"
    url      = "https://www.x.org/archive/individual/app/compiz-0.7.8.tar.gz"

    version('0.7.8', sha256='b46f52b776cc78e85357a07688d04b36ec19c65eadeaf6f6cfcca7b8515e6503')

    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')