summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xsetmode/package.py
blob: 3da2458d29869ad8b43329229da9b8c1ccf4ac36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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 Xsetmode(AutotoolsPackage, XorgPackage):
    """Set the mode for an X Input device."""

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

    version('1.0.0', sha256='9ee0d6cf72dfaacb997f9570779dcbc42f5395ae102180cb19382860b4b02ef3')

    depends_on('libxi')
    depends_on('libx11')

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