summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGregory Lee <lee218@llnl.gov>2021-02-25 23:24:53 -0800
committerGitHub <noreply@github.com>2021-02-26 07:24:53 +0000
commit6c12b6487311801afcafbc611972989593a62f42 (patch)
treede0a1132df7b12f967bebb30ef9ecfac2df7c7af /var
parentc6413c89250d0ecd4aeccadc687059c2d3f31f4c (diff)
downloadspack-6c12b6487311801afcafbc611972989593a62f42.tar.gz
spack-6c12b6487311801afcafbc611972989593a62f42.tar.bz2
spack-6c12b6487311801afcafbc611972989593a62f42.tar.xz
spack-6c12b6487311801afcafbc611972989593a62f42.zip
added waylaynd-protocols package (#21979)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/wayland-protocols/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/wayland-protocols/package.py b/var/spack/repos/builtin/packages/wayland-protocols/package.py
new file mode 100644
index 0000000000..0510751b68
--- /dev/null
+++ b/var/spack/repos/builtin/packages/wayland-protocols/package.py
@@ -0,0 +1,29 @@
+# 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 WaylandProtocols(AutotoolsPackage):
+ """wayland-protocols contains Wayland protocols that add functionality not
+ available in the Wayland core protocol. Such protocols either add
+ completely new functionality, or extend the functionality of some other
+ protocol either in Wayland core, or some other protocol i
+ n wayland-protocols."""
+
+ homepage = "http://wayland.freedesktop.org/"
+ url = "https://github.com/wayland-project/wayland-protocols/archive/1.20.tar.gz"
+
+ version('1.20', sha256='b59cf0949aeb1f71f7db46b63b1c5a6705ffde8cb5bd194f843fbd9b41308dda')
+
+ 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('wayland')