owned by a package OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/mpv-mpris?expand=0&rev=13
68 lines
2.0 KiB
RPMSpec
68 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package mpv-mpris
|
|
#
|
|
# Copyright (c) 2024 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: mpv-mpris
|
|
Version: 1.1
|
|
Release: 0
|
|
Summary: MPRIS plugin for mpv
|
|
License: MIT
|
|
Group: Productivity/Multimedia/Video/Players
|
|
URL: https://github.com/hoyon/mpv-mpris
|
|
Source0: https://github.com/hoyon/mpv-mpris/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: dbus-1
|
|
BuildRequires: mpv
|
|
BuildRequires: pkgconfig
|
|
# BuildRequires: sound-theme-freedesktop
|
|
# BuildRequires: xvfb-run
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.58
|
|
BuildRequires: pkgconfig(mpv)
|
|
Supplements: mpv
|
|
Conflicts: mpv-plugin-mpris
|
|
|
|
%description
|
|
This package contains a plugin for mpv which allows control of the
|
|
player using the MPRIS D-Bus interface, which enables control with
|
|
multimedia keys in desktop environments such as GNOME and KDE
|
|
as well as through tools like playerctl.
|
|
|
|
%prep
|
|
%setup -q
|
|
%autopatch -p1
|
|
|
|
%build
|
|
%make_build
|
|
|
|
%install
|
|
install -Dm0755 mpris.so %{buildroot}%{_libdir}/mpv/mpris.so
|
|
mkdir -p %{buildroot}%{_sysconfdir}/mpv/scripts
|
|
ln -s %{_libdir}/mpv/mpris.so %{buildroot}%{_sysconfdir}/mpv/scripts/mpris.so
|
|
|
|
# test suite does not work on OBS VM
|
|
# %%check
|
|
# %%make_build test
|
|
|
|
%files
|
|
%license LICENSE
|
|
%{_libdir}/mpv
|
|
%dir %{_sysconfdir}/mpv/scripts
|
|
%{_sysconfdir}/mpv/scripts/mpris.so
|
|
|
|
%changelog
|