Add latest version of libxkbcommon (#10134)

This commit is contained in:
Adam J. Stewart 2018-12-17 19:27:58 -06:00 committed by GitHub
parent a41571a1b6
commit d4b5fc141c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,20 +13,17 @@ class Libxkbcommon(AutotoolsPackage):
applications."""
homepage = "https://xkbcommon.org/"
url = "https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.8.0.tar.gz"
url = "https://xkbcommon.org/download/libxkbcommon-0.8.2.tar.xz"
version('0.8.0', '0d9738fb2ed2dcc6e2c6920d94e135ce')
version('0.8.2', sha256='7ab8c4b3403d89d01898066b72cb6069bddeb5af94905a65368f671a026ed58c')
version('0.8.0', sha256='e829265db04e0aebfb0591b6dc3377b64599558167846c3f5ee5c5e53641fe6d')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('bison', type='build')
depends_on('pkgconfig@0.9.0:', type='build')
depends_on('bison', type='build')
depends_on('xkbdata')
depends_on('libxcb@1.10:')
def configure_args(self):
spec = self.spec
args = []
args.append('--with-xkb-config-root={0}'
.format(spec['xkbdata'].prefix))
return args
return [
'--with-xkb-config-root={0}'.format(self.spec['xkbdata'].prefix)
]