SHA256
1
0
forked from pool/rtl_433
rtl_433/rtl_433.spec
Martin Pluskal 8d489214e0 Accepting request 892003 from home:mnhauke:sdr-devel
- Update to version 21.05
  Highlights
  - Last release to support Autotools (autoconf, automake) builds
  - Last release to offer "oldmodel" keys (deprected since 2020)
  - Added GPSd tags option
  - Added optional TLS support to MQTT
  - Added OpenSSL support for influxs TLS
  - Added support for ELK-319DWM, Alula RE101 to Interlogix
  - Added conf for Tesla charge port opener
  - Added support for  Hyundai-VDO TPMS
  - Added support for TX25U dual channel temp sensor
  - Added support for Honeywell CM921/BDR91/Evohome
  - Added support for Auriol AFT 77 B2
  - Added support for Auriol AHFL
  - Added support for Bresser Professional Rain Gauge
  - Added support for TFA Marbella pool thermometer
  - Added support for Amazon Basics Meat Thermometer
  - Added support for Owl 180i support
  - Added support for Jansite TPMS Model Solar
  - Added support for Cavius alarms
  - Added support for Security plus v1
  - Added conf for Skylink HA-434TL motion sensor
  - Added support for Burnhard BBQ thermometer
  - Added support for wmbus water meter Maddalena
  - Added conf for ATC Technology LMT-430
  - Added support for Blueline PowerCost Monitor
  - Added conf for FAN-53T
  - Added support for Acurite 515 fridge/freezer sensors
  - Added support for TelFix-RadioLoop (#1571)
  - Added conf for Salus RT300RF thermostat, Heatmiser PRT-W

OBS-URL: https://build.opensuse.org/request/show/892003
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=22
2021-05-11 09:01:26 +00:00

76 lines
2.2 KiB
RPMSpec

#
# spec file for package rtl_433
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2017-2020, 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: 21.05
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/%{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