summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xwud/package.py
blob: 3f9a82db5a52ca038f08846360531121229ffd89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2021 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 Xwud(AutotoolsPackage, XorgPackage):
    """xwud allows X users to display in a window an image saved in a
    specially formatted dump file, such as produced by xwd."""

    homepage = "https://cgit.freedesktop.org/xorg/app/xwud"
    xorg_mirror_path = "app/xwud-1.0.4.tar.gz"

    version('1.0.4', sha256='b7c124ccd87f529daedb7ef01c670ce6049fe141fd9ba7f444361de34510cd6c')

    depends_on('libx11')

    depends_on('xproto@7.0.17:')
    depends_on('pkgconfig', type='build')
    depends_on('util-macros', type='build')