summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xgc/package.py
blob: 0536ff7c10ccbc5c2c6e33fd660e7b0670b05446 (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
# 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 Xgc(AutotoolsPackage):
    """xgc is an X11 graphics demo that shows various features of the X11
    core protocol graphics primitives."""

    homepage = "http://cgit.freedesktop.org/xorg/app/xgc"
    url      = "https://www.x.org/archive/individual/app/xgc-1.0.5.tar.gz"

    version('1.0.5', '605557a9c138f6dc848c87a21bc7c7fc')

    depends_on('libxaw')
    depends_on('libxt')

    depends_on('flex', type='build')
    depends_on('bison', type='build')
    depends_on('pkgconfig', type='build')
    depends_on('util-macros', type='build')