Files
redsea/redsea.spec
Martin Hauke 726d8bec63 - Update to version 1.3.0
New features:
  * File offset timestamp (--time-from-start). It shows the
    position of each group's * first bit in the input stream in
    seconds (see wiki) (Requested feature #136)
  Removed features:
  * "Radio paging" was removed (it was only decoded internally
    anyway). We haven't found any real data to test it on and the
    feature has been deprecated by RDS Forum since 2021.
  UX and other fixes:
  * Don't print a warning about sample rate when no samples
    expected (Issue #140).
  * Print a warning if expecting raw PCM but WAV header is seen.
  * Print more specific error messages if a file can't be opened
    (instead of "system error") or early EOF is encountered.
  * Validate the combination of command-line options more
    thoroughly, to reduce surprising behavior.
  * Fix a case where truncated hex input lines were accepted by
    mistake and zeros generated.

OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/redsea?expand=0&rev=26
2026-01-07 05:11:08 +00:00

64 lines
1.9 KiB
RPMSpec

#
# spec file for package redsea
#
# Copyright (c) 2026 SUSE LLC and contributors
# Copyright (c) 2017-2026, Martin Hauke <mardnh@gmx.de>
#
# 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: redsea
Version: 1.3.0
Release: 0
Summary: An RDS decoder
License: MIT
Group: Productivity/Hamradio/Other
URL: https://github.com/windytan/redsea
#Git-Clone: https://github.com/windytan/redsea.git
Source: https://github.com/windytan/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libliquid-devel
BuildRequires: libsndfile-devel
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(nlohmann_json)
Recommends: jq
Recommends: rtl-sdr
%description
redsea is a command-line RDS (Radio Data System) decoder.
It can be used with any RTL-SDR USB radio stick with the rtl_fm tool.
It can also decode the raw ASCII bitstream, the hex format used by RDS Spy,
and audio files containing multiplex signals (MPX).
RDS groups are printed to the terminal as line-delimited JSON objects
or, optionally, undecoded hex blocks (-x).
%prep
%autosetup
%build
%meson
%meson_build
%install
%meson_install
%files
%license LICENSE
%doc CHANGES.md README.md
%{_bindir}/redsea
%changelog