forked from pool/inspectrum
- Update to version 0.3.1 * Merge pull request #221 from kwesthaus/file-format-documentation * Merge pull request #184 from jacobagilbert/sigmf_partial_ext * Include format specifiers in help text * Include all format specifiers in README * Allow specifying cs32 file format in command line * Fix README typo in cs32 file format description * add support to read files that end in '.sigmf-' - Update to version 0.3.0 * PlotView: use QWheelEvent::position when available * Merge pull request #216 from schneider42/schneier/description-fallback * Merge pull request #218 from otanim/main * Merge branch 'overlapping-annotations' * Merge branch 'spectrogram-timing' * Handle tooltip comments of overlapping annotations * Improve spectrogram time alignment * Merge pull request #215 from daniestevez/annotation-comments * Display annotation comments as tooltips * fallback to core:description for anno label * Merge pull request #214 from catkira/add_ci32 * add support for sigmf ci32 files this is needed to import sigmf files written by SDRangel * Merge pull request #212 from miek/miek-patch-1 * actions: add Ubuntu 22.04 & remove Ubuntu 18.04 * Merge pull request #211 from argilo/more-cursor-symbols * Merge pull request #210 from argilo/fix-cursor-overflow * Allow up to 99,999 symbols * Fix integer overflow in cursor segment drawing * Add note about 64-bit sample truncation * Add support for complex double (cf64) OBS-URL: https://build.opensuse.org/request/show/1121326 OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/inspectrum?expand=0&rev=17
66 lines
2.0 KiB
RPMSpec
66 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package inspectrum
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2015-2023, 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: inspectrum
|
|
Version: 0.3.1
|
|
Release: 0
|
|
Summary: A tool for analysing captured signals from SDRs
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Hamradio/Other
|
|
URL: https://github.com/miek/inspectrum
|
|
Source: %{url}/archive/refs/tags/v%{version}.tar.gz/#/%{name}-%{version}.tar.gz
|
|
BuildRequires: boost-devel
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: git-core
|
|
BuildRequires: libliquid-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(Qt5Concurrent)
|
|
# QCommandLineParser needs QT5.2+
|
|
BuildRequires: pkgconfig(Qt5Widgets) >= 5.2
|
|
BuildRequires: pkgconfig(fftw3f)
|
|
Requires(post): hicolor-icon-theme
|
|
Requires(post): update-desktop-files
|
|
Requires(postun):hicolor-icon-theme
|
|
Requires(postun):update-desktop-files
|
|
|
|
%description
|
|
A tool for analysing captured signals, primarily from software-defined radio receivers
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%cmake
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
install -Dm 0644 screenshot.jpg %{buildroot}/%{_datadir}/pixmaps/inspectrum.jpg
|
|
%suse_update_desktop_file -c inspectrum inspectrum "Offline Radio Signal Analyser" inspectrum inspectrum "Network;HamRadio"
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/inspectrum.desktop
|
|
%{_datadir}/pixmaps/inspectrum.jpg
|
|
|
|
%changelog
|