rtl_433/rtl_433.spec
Martin Pluskal 38775f184f Accepting request 508924 from home:mnhauke:sdr-devel
- Update to version 0.0.1+git.20170708:
  * prevent bad messages of all 1 that falsely check ok with crc.
  * adding IBIS beacon
  * fix Company name, output flags and tire pressure/temperature
  * proper units for pressure, units for power, fix OS output fields
  * adding Oil Ultrasonic Standard protocol
  * hop interval param added (multiple frequencies)
  * updated README.md
  * typo fix
  * pipe symbol with HTML code
  * Update README.md
  * Added data struct for efergye2 (#540)
  * fix fabsf() in integer context (#551)
  * adding Citroen TPMS device
  * bugfix, bitbuffer needs to be initialized
  * adding Oil Ultrasonic STANDARD using ASK on 915MHz
  * Honda remote: fix an out of bounds array access
  * Removed use of pow() (#557)
  * Possible bugfix for issue #136
  * Update .gitignore
  * Fix hex output padding for unit ID field for lightwaverf.
  * Thermopro TP-11.
  * Move TP-11 to the end.
  * Thermopro TP-11 changes:   - exit early if not enough matching rows are found   - simplify bits_per_row check   - local_time_str happens after decoding data
  * Fix sign error.
  * Variable declarations are at the top of the function.
  * Solight TE44 wireless thermometer
  * Fix spelling in documentation
  * adding Wireless Smoke and Heat Detector GS 558

OBS-URL: https://build.opensuse.org/request/show/508924
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=4
2017-07-08 19:02:13 +00:00

58 lines
1.6 KiB
RPMSpec

#
# spec file for package rtl_433
#
# 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 0.0.1+git.20170708
Name: rtl_433
Version: 0.0.1+git.20170708
Release: 0
Summary: Turns RTL2832 dongle into a 433.92MHz generic data receiver
License: GPL-2.0
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: pkg-config
BuildRequires: pkgconfig(librtlsdr)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
An application using librtlsdr to decode the temperature from
wireless temperature sensors (433.92MHz)
%prep
%setup -q
%patch0 -p1
%build
%cmake
make VERBOSE=1 %{?_smp_mflags}
%install
%cmake_install
%files
%defattr(-,root,root)
%doc AUTHORS COPYING README.md
%{_bindir}/rtl_433
%{_includedir}/rtl_433.h
%{_includedir}/rtl_433_devices.h
%changelog