diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-31 03:56:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 14:56:31 -0500 |
commit | d0ad622272839f002461f844647b957b654c2336 (patch) | |
tree | 5e21e133e441bbc7e54d93f39d14bed492a8243b | |
parent | d6f0cb04611737055d5caf91a5b0a9a5874d9952 (diff) | |
download | spack-d0ad622272839f002461f844647b957b654c2336.tar.gz spack-d0ad622272839f002461f844647b957b654c2336.tar.bz2 spack-d0ad622272839f002461f844647b957b654c2336.tar.xz spack-d0ad622272839f002461f844647b957b654c2336.zip |
Add new package: wayland (#18826)
* Add new package: wayland
* remove duplicated dependency
-rw-r--r-- | var/spack/repos/builtin/packages/wayland/package.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/wayland/package.py b/var/spack/repos/builtin/packages/wayland/package.py new file mode 100644 index 0000000000..daece1a824 --- /dev/null +++ b/var/spack/repos/builtin/packages/wayland/package.py @@ -0,0 +1,35 @@ +# Copyright 2013-2020 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 Wayland(AutotoolsPackage): + """Wayland is a project to define a protocol for a compositor to talk + to its clients as well as a library implementation of the protocol. + The compositor can be a standalone display server running on Linux + kernel modesetting and evdev input devices, an X application, or a + wayland client itself. The clients can be traditional applications, + X servers(rootless or fullscreen) or other display servers.""" + + homepage = "http://wayland.freedesktop.org/" + url = "https://github.com/wayland-project/wayland/archive/1.18.0.tar.gz" + + version('1.18.0', sha256='8d375719ebfa36b6f2968096fdf0bfa7d39ba110b7956c0032e395e7e012f332') + version('1.17.93', sha256='293536ad23bfed15fc34e2a63bbb511167e8b096c0eba35e805cb64d46ad62ae') + version('1.17.92', sha256='d944a7b999cfe6fee5327a2315c8e5891222c5a88a96e1ca73485978e4990512') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + depends_on('pkgconfig', type='build') + depends_on('doxygen', type='build') + depends_on('xmlto', type='build') + depends_on('libxslt', type='build') + depends_on('libxml2') + depends_on('chrpath') + depends_on('expat') + depends_on('libffi') |