mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 14:31:23 +00:00
949307fcf8
* deps: bump tokio to 1.52.1 * deps: bump clap to 4.6.1 * deps: cargo update bitflags -> v2.11.1 core2 - dary_heap -> v0.3.9 font-types -> v0.11.3 include-flate -> v0.3.3 include-flate-codegen -> v0.3.3 include-flate-compress -> v0.3.3 libc -> v0.2.185 libflate -> v2.3.0 libflate_lz77 -> v2.3.0 no_std_io2 + v0.9.3 portable-atomic-util -> v0.2.7 pxfm -> v0.1.29 rayon -> v1.12.0 uuid -> v1.23.1 webbrowser -> v1.2.1 * change version to 1.7.2
56 lines
1.5 KiB
RPMSpec
56 lines
1.5 KiB
RPMSpec
%bcond check 1
|
|
|
|
# prevent library files from being installed
|
|
%global cargo_install_lib 0
|
|
|
|
Name: pwsp
|
|
Version: 1.7.2
|
|
Release: %autorelease
|
|
Summary: Lets you play audio files through your microphone
|
|
|
|
License: MIT
|
|
|
|
URL: https://github.com/arabianq/pipewire-soundpad
|
|
Source: https://github.com/arabianq/pipewire-soundpad/archive/refs/tags/v%{version}.tar.gz
|
|
|
|
BuildRequires: rust
|
|
BuildRequires: cargo
|
|
BuildRequires: pipewire-devel
|
|
BuildRequires: alsa-lib-devel
|
|
BuildRequires: clang-devel
|
|
|
|
%global _description %{expand:
|
|
PWSP lets you play audio files through your microphone. Has both CLI and
|
|
GUI clients.}
|
|
|
|
%description %{_description}
|
|
|
|
%prep
|
|
%autosetup -n pipewire-soundpad-%{version} -p1
|
|
|
|
%build
|
|
cargo build --release --locked
|
|
|
|
%install
|
|
install -Dm755 target/release/pwsp-cli %{buildroot}%{_bindir}/pwsp-cli
|
|
install -Dm755 target/release/pwsp-daemon %{buildroot}%{_bindir}/pwsp-daemon
|
|
install -Dm755 target/release/pwsp-gui %{buildroot}%{_bindir}/pwsp-gui
|
|
|
|
install -Dm644 assets/pwsp-gui.desktop %{buildroot}%{_datadir}/applications/pwsp.desktop
|
|
install -Dm644 assets/icon.png %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/pwsp.png
|
|
|
|
install -Dm644 assets/pwsp-daemon.service %{buildroot}/usr/lib/systemd/user/pwsp-daemon.service
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_bindir}/pwsp-cli
|
|
%{_bindir}/pwsp-daemon
|
|
%{_bindir}/pwsp-gui
|
|
%{_datadir}/applications/pwsp.desktop
|
|
%{_datadir}/icons/hicolor/256x256/apps/pwsp.png
|
|
/usr/lib/systemd/user/pwsp-daemon.service
|
|
|
|
%changelog
|
|
%autochangelog
|