From 3a4f49cb158818ce78fced530897ae46d1e4cc61 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 8 Jun 2024 13:41:09 +0200 Subject: [PATCH] package created using the webbuild interface [release 0.4.1-1mamba;Fri Jun 07 2024] --- README.md | 2 ++ wlr-randr.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 wlr-randr.spec diff --git a/README.md b/README.md index fb58987..6b2873e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # wlr-randr +An xrandr clone for wlroots compositors. + diff --git a/wlr-randr.spec b/wlr-randr.spec new file mode 100644 index 0000000..b43285b --- /dev/null +++ b/wlr-randr.spec @@ -0,0 +1,44 @@ +Name: wlr-randr +Version: 0.4.1 +Release: 1mamba +Summary: An xrandr clone for wlroots compositors +Group: System/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://git.sr.ht/~emersion/wlr-randr +Source: https://git.sr.ht/~emersion/wlr-randr/archive/v%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libwayland-devel +## AUTOBUILDREQ-END +BuildRequires: meson + +%description +An xrandr clone for wlroots compositors. + +%debug_package + +%prep +%setup -q -n %{name}-v%{version} + +%build +%meson +%meson_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%meson_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/wlr-randr +%doc LICENSE + +%changelog +* Fri Jun 07 2024 Silvan Calarco 0.4.1-1mamba +- package created using the webbuild interface