5f78dd0097
Breaking Changes * Changed to pm_2_5_ug_m3, pm_10_ug_m3, BREAKING change to Bresser-7in1. * Changed Smoke-GS558, Akhan-100F14 to default disabled. * Changed distance_km to storm_dist_km, BREAKING change to Bresser-Lightning. Highlights * Added support for Technoline TX960 to Acurite-606TX decoder. * Added support for Risco 2 way Agility protocol, Risco PIR/PET Sensor RWX95PA. * Added support for Rosstech Digital Control Unit DCU-706/Sundance/Jacuzzi. * Added support for Arexx Multilogger. * Updated Fineoffset-WS90 to new FW timings. * Added decoder conf for oma blind remote. * Added decoder conf for iVac Pro remote. * Added Vevor Weather Station 7-in-1. * Added support for Ecowitt WH46 air quality sensor. * Added open in browser script. * Added decoder conf for Hornbach MSRC-SAL Awning remote. * Added support for Geevon TX16-3 outdoor sensor. * Added support for Arad Master Meter water utility meter. * Added support for ThermoPro TP829b and Improve rtl_433_mqtt_hass.py. * Added Support for Chamberlain CWPIRC pir sensor. * Added support for Nice One to Nice-FlorS. * Added Support for Ecowitt WN34D and improve FineOffset WN34. * Added decoder conf for rolleaseacmedia blind controller. * Added decoder conf for Thomson kinetic doorbell. OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=31
74 lines
2.1 KiB
RPMSpec
74 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package rtl_433
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2017-2024, 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: 24.10
|
|
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)
|
|
BuildRequires: pkgconfig(openssl)
|
|
|
|
%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
|
|
|
|
%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
|