blob: 539c332cd19b2be5ce220fee083e4fc81b58af1d (
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
|
# 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 Xdotool(MakefilePackage):
"""fake keyboard/mouse input, window management, and more"""
homepage = "https://github.com/jordansissel/xdotool"
url = "https://github.com/jordansissel/xdotool/releases/download/v3.20160805.1/xdotool-3.20160805.1.tar.gz"
version('3.20160805.1', sha256='35be5ff6edf0c620a0e16f09ea5e101d5173280161772fca18657d83f20fcca8')
version('3.20160804.2', sha256='2251671c3c3dadab2b70e08bd87f2de6338c7b4e64e7e2d2d881fd13f9bff72c')
version('3.20160804.1', sha256='7a76ee57515cc767a00a768f1d04c703279d734255a34f8027c29178561fdce9')
version('3.20150503.1', sha256='e8326883bd5e91bede7336cbee186e6e9143f40b3fb61c84afc9bb31b87e96d1')
depends_on('libxext')
depends_on('libxtst')
depends_on('libxi')
depends_on('libx11')
depends_on('inputproto')
depends_on('libxinerama')
depends_on('libxkbcommon')
def edit(self, spec, prefix):
env['PREFIX'] = prefix
makefile = FileFilter('Makefile')
makefile.filter('xdotool: LDFLAGS+=-Xlinker', '', string=True)
makefile.filter('xdotool: LDFLAGS+=-rpath $(INSTALLLIB)', '',
string=True)
|