Neal Gompa
f0c4eb469d
+ Add a tab for ChromeOS protocols + Add a tab for unknown protocol interfaces + Add a search bar for quickly finding protocols + Add a combo box to filter by implemented or unimplemented protocols + Add explanatory tooltips to table headers + Fix detection of the virtual pointer manager protocol + Fix detection of the DRM lease protocol + Fix warning on startup from the Qt desktop filename OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/waycheck?expand=0&rev=6
65 lines
1.7 KiB
RPMSpec
65 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package waycheck
|
|
#
|
|
# Copyright (c) 2023 Neal Gompa
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global qt6_minver 6.5
|
|
|
|
Name: waycheck
|
|
Version: 1.0.0
|
|
Release: 0
|
|
Summary: GUI that displays protocols implemented by a Wayland compositor
|
|
|
|
License: Apache-2.0
|
|
URL: https://gitlab.freedesktop.org/serebit/waycheck
|
|
Source0: %{url}/-/archive/v%{version}/%{name}-v%{version}.tar.gz
|
|
|
|
BuildRequires: meson
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig(Qt6Core) >= %{qt6_minver}
|
|
BuildRequires: pkgconfig(Qt6Gui) >= %{qt6_minver}
|
|
BuildRequires: pkgconfig(Qt6WaylandClient) >= %{qt6_minver}
|
|
BuildRequires: pkgconfig(Qt6Widgets) >= %{qt6_minver}
|
|
BuildRequires: pkgconfig(wayland-client)
|
|
|
|
Requires: hicolor-icon-theme
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%prep
|
|
%autosetup -n %{name}-v%{version}
|
|
|
|
|
|
%build
|
|
%meson
|
|
%meson_build
|
|
|
|
|
|
%install
|
|
%meson_install
|
|
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%doc README.md
|
|
%{_bindir}/waycheck
|
|
%{_datadir}/applications/dev.serebit.Waycheck.desktop
|
|
%{_datadir}/metainfo/dev.serebit.Waycheck.metainfo.xml
|
|
%{_datadir}/icons/hicolor/
|
|
|
|
%changelog
|