05ec4b5b22
* bladeRF-cmake_syntax.patch OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/bladeRF?expand=0&rev=18
130 lines
3.4 KiB
RPMSpec
130 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package bladeRF
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2013-2015 Wojciech Kazubski, wk@ire.pw.edu.pl
|
|
#
|
|
# 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 sover 1
|
|
%define libname lib%{name}%{sover}
|
|
%define release_name 2016.06
|
|
%define bladerf_group bladerf
|
|
%define use_syslog 0
|
|
Name: bladeRF
|
|
Version: 1.4.0
|
|
Release: 0
|
|
Summary: SDR radio receiver
|
|
License: GPL-2.0
|
|
Group: Productivity/Hamradio/Other
|
|
Url: http://nuand.com/
|
|
#Git-Clone: https://github.com/Nuand/bladeRF.git
|
|
Source: https://github.com/Nuand/bladeRF/archive/%{release_name}.tar.gz#/%{name}-%{release_name}.tar.xz
|
|
# PATCH-FIX-OPENSUSE bladeRF-add-cflag-Wno-format-truncation.patch boo#1041192
|
|
Patch0: bladeRF-add-cflag-Wno-format-truncation.patch
|
|
# PATCH-FIX-UPSTREAM bladeRF-cmake_syntax.patch upstream commit 037e288
|
|
Patch1: bladeRF-cmake_syntax.patch
|
|
BuildRequires: cmake >= 2.8.4
|
|
BuildRequires: doxygen
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: git-core
|
|
BuildRequires: help2man
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: tecla-devel
|
|
BuildRequires: pkgconfig(libusb-1.0)
|
|
BuildRequires: pkgconfig(udev)
|
|
|
|
%description
|
|
The software for bladeRF USB 3.0 Superspeed Software Defined Radio.
|
|
|
|
%package -n %{libname}
|
|
Version: 1.7.2
|
|
Release: 0
|
|
Summary: Library for bladeRF
|
|
Group: System/Libraries
|
|
Requires: %{name}-udev
|
|
|
|
%description -n %{libname}
|
|
Library for bladeRF, SDR transceiver.
|
|
|
|
%package udev
|
|
Summary: Udev rules for bladeRF
|
|
Group: Hardware/Other
|
|
Requires(pre): shadow
|
|
|
|
%description udev
|
|
Udev rules for bladeRF
|
|
|
|
%package devel
|
|
Summary: Development files for libbladeRF
|
|
Group: Development/Libraries/Other
|
|
Requires: %{libname} = %{version}
|
|
|
|
%description devel
|
|
Libraries and header files for developing applications that want to make
|
|
use of libbladerf.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{release_name}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
|
|
%build
|
|
cd host
|
|
%cmake \
|
|
-DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} \
|
|
-DUDEV_RULES_PATH=%{_udevrulesdir} \
|
|
-DBLADERF_GROUP=%{bladerf_group} \
|
|
-DBUILD_DOCUMENTATION=YES \
|
|
%if 0%{?use_syslog}
|
|
-DENABLE_LIBBLADERF_SYSLOG=ON \
|
|
%endif
|
|
-DBUILD_DOCUMENTATION=ON
|
|
%make_jobs
|
|
|
|
%install
|
|
cd host
|
|
%cmake_install
|
|
|
|
%post -n %{libname} -p /sbin/ldconfig
|
|
%postun -n %{libname} -p /sbin/ldconfig
|
|
|
|
%pre udev
|
|
getent group %{bladerf_group} >/dev/null || groupadd -r %{bladerf_group}
|
|
|
|
%post udev
|
|
%udev_rules_update
|
|
|
|
%postun udev
|
|
%udev_rules_update
|
|
|
|
%files
|
|
%doc README.md COPYING CONTRIBUTORS
|
|
%{_bindir}/bladeRF-cli
|
|
%{_mandir}/man1/bladeRF-cli.1%{ext_man}
|
|
|
|
%files udev
|
|
%{_udevrulesdir}/88-nuand.rules
|
|
|
|
%files -n %{libname}
|
|
%{_libdir}/libbladeRF.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/libbladeRF.so
|
|
%{_includedir}/libbladeRF.h
|
|
%{_libdir}/pkgconfig/libbladeRF.pc
|
|
|
|
%changelog
|