forked from pool/usbview
Marcus Meissner
774bed211d
- update to 2.1: - build warnings fixed - increased max number of interfaces allowed, fixing problem with some USB sound devices. - autogen.sh added - LICENSES directory added and license moved to it - SPDX license headers added - policykit support added OBS-URL: https://build.opensuse.org/request/show/941729 OBS-URL: https://build.opensuse.org/package/show/Base:System/usbview?expand=0&rev=8
62 lines
1.8 KiB
RPMSpec
62 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package usbview
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: usbview
|
|
Version: 2.1
|
|
Release: 0
|
|
Summary: USB Topology and Device Viewer
|
|
License: GPL-2.0-only
|
|
Group: Hardware/Other
|
|
URL: https://github.com/gregkh/usbview
|
|
Source: https://github.com/gregkh/usbview/archive/refs/tags/v%{version}.tar.gz
|
|
Source1: %{name}.desktop
|
|
BuildRequires: ImageMagick
|
|
BuildRequires: automake
|
|
BuildRequires: gtk3-devel
|
|
BuildRequires: polkit
|
|
BuildRequires: update-desktop-files
|
|
Requires: polkit
|
|
|
|
%description
|
|
USBView is a GTK program that displays the topography of the devices
|
|
that are plugged into the USB on a Linux machine. It also displays
|
|
information on each of the devices. This can be useful to determine if
|
|
a device is working properly.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
sh autogen.sh
|
|
%configure
|
|
|
|
%install
|
|
%make_install
|
|
%suse_update_desktop_file -i %{name} System Monitor
|
|
|
|
%files
|
|
%license LICENSES/GPL-2.0-only.txt
|
|
%doc ChangeLog README TODO
|
|
%{_bindir}/usbview
|
|
%{_datadir}/applications/*.desktop
|
|
%{_datadir}/icons/hicolor/*/apps/usbview.*
|
|
%{_datadir}/polkit-1/actions/org.freedesktop.pkexec.usbview.policy
|
|
%{_mandir}/man?/*.*
|
|
|
|
%changelog
|