summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xsetmode/package.py
blob: 39c27710751bd7bfdbab22e92e03b4cebb7be3bc (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-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 Xsetmode(AutotoolsPackage):
    """Set the mode for an X Input device."""

    homepage = "http://cgit.freedesktop.org/xorg/app/xsetmode"
    url      = "https://www.x.org/archive/individual/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')