rtl_433/rtl_433.spec
Martin Pluskal a24a91488f Accepting request 577096 from home:mnhauke:sdr-devel
- Update to version 0.0.1+git.20180213:
  * fix flex options, add gap_limit for PWM
  * README.md: Add another Debian dependency (#680)
  * README.md: Fix typo (#679)
  * README.md: Add build tools to Debian command (#678)
  * revert localtime_r to localtime for win32
  * disable syslog output on win32
  * remove left over xc0348 device
  * Fix on_connect signature and topic subscriptions in MQTT examples. (#674)
  * refactor hostport_param
  * refactor abuf
  * allow ipv6 for syslog
  * add flex device to Makefile
  * refactor print_array_value
  * use prettier C99 bool macro
  * shuffle functions
  * change aux pattern to composition
  * remove output_hander_t, printer_ctx indirection
  * change indent; consistent style
  * adds a remote syslog output
  * update readme usage info
  * default enable x10_sec, timing doc, style
  * Adds x10_sec device for decoding X10 Security RF signals (#671)
  * Spelling fix: gague -> gauge (#672)
  * fix new_template
  * use localtime_r instead of localtime
  * reduce false positves with Bresser on LaCrosse TX141TH
  * add MIC to bresser
  * freshen up template with more examples
  * add a flexible general purpose decoder (#647)

OBS-URL: https://build.opensuse.org/request/show/577096
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=6
2018-02-16 08:02:22 +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.20180213
Name: rtl_433
Version: 0.0.1+git.20180213
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