rtl_433/rtl_433.spec
Martin Hauke 97166bb827 Accepting request 1036818 from home:mnhauke:sdr-devel
- Update to version 22.11
  Breaking Changes
  * Fixed irregular model names.
    "Inkbird ITH-20R" -> "Inkbird-ITH20R"
    "LaCrosse-WS7000-27/28" -> "LaCrosse-WS700027"
    "LaCrosse-WS7000-22/25" -> "LaCrosse-WS700022"
    "LaCrosse-WS7000-16" -> "LaCrosse-WS700016"
    "LaCrosse-WS7000-15" -> "LaCrosse-WS700015"
    "LaCrosse-WS7000-20" -> "LaCrosse-WS700020"
    "LaCrosse-WS2500-19" -> "LaCrosse-WS250019"
    "Abarth 124 Spider" -> "Abarth-124Spider"
    "Jansite Solar" -> "Jansite-Solar"
    "Klimalogg Pro" -> "Klimalogg-Pro"
    "Secplus_v1" -> "Secplus-v1"
    "SCM+" -> "SCMplus"
    Changed light_klx to light_lux in Bresser-7in1.
  Highlights
  * Added rtl_tcp pass-through output.
  * Added realtime replay option for file inputs.
  * Added support for Badger ORION water meter.
  * Added support for Rubicson pool thermometer.
  * Added support for Fine Offset WN34 temperature sensor.
  * Added support for KS200/KS300 to ELV WS2000.
  * Added support for Maverick XR-30.
  * Added support for Fine Offset WH45 air quality sensor.
  * Added support for HCS200/HCS300 based remotes with FSK
    transmitters.
  * Added support for Emos E6016 Rain Gauge.
  * Added support for ANT and ANT+ devices.
  * Added support for Altronics X7064 sensor.

OBS-URL: https://build.opensuse.org/request/show/1036818
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=27
2022-11-19 16:11:57 +00:00

76 lines
2.2 KiB
RPMSpec

#
# spec file for package rtl_433
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2017-2022, 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: rtl_433
Version: 22.11
Release: 0
Summary: Application turning the RTL2832 dongle into a 433.92MHz generic data receiver
License: GPL-2.0-only
Group: Productivity/Hamradio/Other
URL: https://github.com/merbanan/rtl_433.git
Source: https://github.com/merbanan/rtl_433/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: pkgconfig
BuildRequires: pkgconfig(SoapySDR)
BuildRequires: pkgconfig(librtlsdr)
BuildRequires: pkgconfig(libusb)
%description
An application using librtlsdr to decode the temperature from
wireless temperature sensors (433.92MHz)
%package devel
Summary: Header files for the RTL2832 dongle library
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
%description devel
Turns RTL2832 dongle into a 433.92MHz generic data receiver.
This subpackage contains header files for developing applications that want
to make use of rtl_433.
%prep
%setup -q
%build
%cmake \
-DBUILD_TESTING=OFF
%cmake_build
%install
%cmake_install
# FIXME: Should be fixed in the makefile
install -d %{buildroot}/%{_sysconfdir}/rtl_433
mv %{buildroot}%{_prefix}%{_sysconfdir}/rtl_433/ %{buildroot}/%{_sysconfdir}/
%files
%license COPYING
%doc AUTHORS README.md
%{_bindir}/rtl_433
%dir %{_sysconfdir}/rtl_433
%config %{_sysconfdir}/rtl_433/*.conf
%{_mandir}/man1/rtl_433.1%{?ext_man}
%files devel
%{_includedir}/rtl_433.h
%{_includedir}/rtl_433_devices.h
%changelog