File mpdris2-rs.spec of Package mpdris2-rs
#
# spec file for package mpdris2-rs
#
# Copyright (c) 2026 mantarimay
#
# 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/
#
%bcond_without test
Name: mpdris2-rs
Version: 1.1.0
Release: 0
Summary: Exposing MPRIS2 D-Bus interface for MPD
License: GPL-3.0-or-later
URL: https://github.com/szclsya/mpdris2-rs
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
Source1: vendor.tar.zst
BuildRequires: cargo-packaging
Recommends: mpd
%description
A lightweight implementation of MPD to D-Bus bridge, which exposes MPD
player and playlist information onto MPRIS2 interface so other programs can
use this generic interface to retrieve MPD's playback state.
%prep
%autosetup -a1 -p1
sed -i 's|/usr/local|/usr|' misc/%{name}.service
%build
%{cargo_build}
%install
install -Dm755 target/release/%{name} -t %{buildroot}%{_bindir}
install -Dm644 misc/%{name}.service -t %{buildroot}%{_userunitdir}
%if %{with test}
%check
%{cargo_test}
%endif
%files
%license COPYING
%doc README*
%{_bindir}/%{name}
%{_userunitdir}/%{name}.service
%changelog