112274e1d0
- Update to version 18.05+git.20180806: * Clean up copyright notes * Change flex to more robust opt arg parse * Fix bitbuffer_parse to be sane about empty row specs * Tweak timings for Kerui * Fill id string for Bresser device. * Add battery event for Kerui * Update style for chuango * Update style for akhan * Update style and add cmds to Kerui * Update code style for wssensor * Add Hyundai WS SENZOR (#779) * Add fix for TEK377E, issue #776 * Fix Makefile devices to match CMakeLists * Add CS16 input and output (#773) * Add device: M-Bus (EN 13757-4) - Data Link layer (#768) * Fix for Autotools * Rewrite debug_mode to load_mode and dump_mode * Fix typo * Fix indents * Clean up baseband, optimize FM, add baseband-test (#770) * Rewrite ambient_weather for robustness and style * Remove some unwanted BITBUF_COLS uses * Change radiohead to unify the applications * Fix Sensible Living merge * Sensible Living protocol added. (#742) * Fix SOCKET(_TYPE) for syslog * Win32 syslog client patches (#762) * Make printout aligned (#761) * Make the frequency setting clearer. (#760) OBS-URL: https://build.opensuse.org/request/show/630318 OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=11
71 lines
2.0 KiB
RPMSpec
71 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package rtl_433
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2017, 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define version_unconverted 18.05+git.20180806
|
|
Name: rtl_433
|
|
Version: 18.05+git.20180806
|
|
Release: 0
|
|
Summary: Turns 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: %{name}-%{version}.tar.xz
|
|
Patch0: rtl_433-disable-test.diff
|
|
BuildRequires: cmake
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(librtlsdr)
|
|
|
|
%description
|
|
An application using librtlsdr to decode the temperature from
|
|
wireless temperature sensors (433.92MHz)
|
|
|
|
%package devel
|
|
Summary: Turns RTL2832 dongle into a 433.92MHz generic data receiver
|
|
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
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%cmake
|
|
make VERBOSE=1 %{?_smp_mflags}
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%license COPYING
|
|
%doc AUTHORS README.md
|
|
%{_bindir}/rtl_433
|
|
|
|
%files devel
|
|
%{_includedir}/rtl_433.h
|
|
%{_includedir}/rtl_433_devices.h
|
|
|
|
%changelog
|