From 8f0c0be2834d0b245cbcd2fbf3852b23220395c4 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 13 Oct 2024 09:39:30 +0200 Subject: [PATCH] package created using the webbuild interface [release 1.2.0-1mamba;Sat Oct 12 2024] --- README.md | 2 ++ wayland-utils.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 wayland-utils.spec diff --git a/README.md b/README.md index f136cd3..2c58464 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # wayland-utils +wayland-info is a utility for displaying information about the Wayland protocols supported by a Wayland compositor. + diff --git a/wayland-utils.spec b/wayland-utils.spec new file mode 100644 index 0000000..45c3156 --- /dev/null +++ b/wayland-utils.spec @@ -0,0 +1,46 @@ +Name: wayland-utils +Version: 1.2.0 +Release: 1mamba +Summary: A utility for displaying information about the Wayland protocols supported by a Wayland compositor +Group: System/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://gitlab.freedesktop.org/wayland/wayland-utils +Source: https://gitlab.freedesktop.org/wayland/wayland-utils.git/%{version}/wayland-utils-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libdrm-devel +BuildRequires: libwayland-devel +## AUTOBUILDREQ-END +BuildRequires: meson + +%description +wayland-info is a utility for displaying information about the Wayland protocols supported by a Wayland compositor. + +%debug_package + +%prep +%setup -q + +%build +%meson +%meson_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%meson_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/wayland-info +%{_mandir}/man1/wayland-info.1.gz +%doc COPYING + +%changelog +* Sat Oct 12 2024 Silvan Calarco 1.2.0-1mamba +- package created using the webbuild interface