SHA256
1
0
forked from pool/rtl_433
rtl_433/rtl_433.spec
Martin Pluskal fba6874357 Accepting request 1129758 from home:mnhauke:sdr-devel
- Update to version 23.11
  Breaking Changes
  * Changed conf dir defaults to just SYSCONFDIR.
  * Changed verbosity of Protocols Registered output.
  * Changed example conf file to use defaults.
  * Changed help texts to print to stdout.
  * Fixed Oregon Scientific channel renumbering, BREAKING change
    to THN132N channel 3.
  * Changed MQTT client ID to contain all params.
  * Fixed GEO-minim matching, BREAKING change to id field.
  * Changed Inkbird-ITH20R temperature2_C to temperature_2_C
    BREAKING change.
  Highlights
  * Added support for Schou 72543 rain sensor
  * Added support for Bresser Lightning and Bresser Air Quality.
  * Added support for Tekelek oil gauge
  * Added support for Nissan Leaf TPMS.
  * Added support for Carchet TPMS.
  * Added support for Bresser water leakage sensor PN: 7009975.
  * Added support for discovering Govee water sensors to
    rtl_433_mqtt_hass.
  * Added support for newer Chuango DWC-102 close command.
  * Added support for TFA Stratos 30.3151 and improve Fineoffset
    WH1050.
  * Added support for IROX ETS69 to Ewig Emos-TTX201.
  * Added support for ThermoPro TX-2C.
  * Added support for Fineoffset WS90.
  * Added support for Acurite 592TX.
  * Added support for Oregon Scientific AWR129 BBQ thermometer.
  * Added support for Celsia CZC1.

OBS-URL: https://build.opensuse.org/request/show/1129758
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=29
2023-11-29 10:46:20 +00:00

76 lines
2.2 KiB
RPMSpec

#
# spec file for package rtl_433
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2017-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: rtl_433
Version: 23.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