%global upstream_url https://github.com/InstaZDLL/WaveFlow %global asset_url %{upstream_url}/releases/download/v%{version}/WaveFlow_%{version}_linux-x86_64.rpm # The upstream Tauri binary is already stripped, so there is no # debug info for Fedora's automatic `find-debuginfo` step to extract. # Disable the debug subpackage so rpmbuild doesn't try (and emit a # bunch of warnings) — it has nothing to operate on. %global debug_package %{nil} Name: waveflow Version: 1.3.0 Release: 1%{?dist} Summary: Local-first music player with a Spotify-inspired UI License: GPL-3.0-only URL: https://waveflow.app ExclusiveArch: x86_64 Source0: %{asset_url} # The upstream .rpm was built by tauri-bundler on Ubuntu and its # auto-detected Requires use Debian-style sonames that confuse # dnf on Fedora. Override with native Fedora package names below. AutoReqProv: no Requires: webkit2gtk4.1 Requires: gtk3 Requires: libsoup3 Requires: libayatana-appindicator-gtk3 Requires: librsvg2 Requires: alsa-lib %description WaveFlow is a local music player desktop app built with Tauri 2 and React 19. It scans your local audio folders, organizes tracks by album / artist / genre, and plays them with a real-time audio engine — no streaming, no cloud, your music stays on your machine. Features include smart playlists, BPM analysis, LRCLIB lyrics fetch, Last.fm scrobbling, Discord Rich Presence, DLNA streaming, a 6-band equalizer, A-B loop, sleep timer, mood radio, year-in-review "Wrapped" stats, and more. %prep # Source0 is a binary RPM, not a tarball — nothing to extract here. # %setup -T -c creates an empty build directory so rpmbuild is happy. %setup -T -c %build # Repackaging only — no compile step. %install # Drop the upstream .rpm payload directly into the build root. mkdir -p %{buildroot} cd %{buildroot} rpm2cpio %{SOURCE0} | cpio -idmv %files # Tauri-bundler emits a mixed-case layout: the binary and icon # basenames are lowercase, but the .desktop file keeps the # upstream productName casing. %{_bindir}/waveflow %{_datadir}/applications/WaveFlow.desktop %{_datadir}/icons/hicolor/*/apps/waveflow.png %changelog * Wed May 13 2026 InstaZDLL - 1.0.0-1 - Initial COPR release. Repackages the upstream .rpm from GitHub Releases with Fedora-native Requires.