From 1f6f519b225e0da41845f9e8809293403f59b83e Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 14 May 2020 11:36:20 +0200 Subject: [PATCH] contrib: import RPM spec Copy the RPM spec file from: https://build.opensuse.org/project/show/home:mnhauke:osmocom:nightly Related: OS#4550 Change-Id: I45edbd4ae5bca1194c17452e8fd3538742ca1ef0 --- contrib/libusrp.spec | 128 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 contrib/libusrp.spec diff --git a/contrib/libusrp.spec b/contrib/libusrp.spec new file mode 100644 index 0000000..2ba813a --- /dev/null +++ b/contrib/libusrp.spec @@ -0,0 +1,128 @@ +# +# spec file for package libusrp +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018, Martin Hauke +# +# 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/ +# + + +%define sover -3_4_4+git_20190808-0 +%define libname libusrp%{sover} +Name: libusrp +Version: 3.4.4+git.20190808 +Release: 0 +Summary: Stand-alone libusrp for USRP1 from old gnuradio.git +License: GPL-3.0-or-later +Group: Development/Libraries/C and C++ +URL: https://git.osmocom.org/libusrp +Source: %{name}-%{version}.tar.xz +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: fdupes +BuildRequires: gcc-c++ +BuildRequires: libtool +BuildRequires: pkgconfig +BuildRequires: sdcc +%if 0%{?suse_version} < 1320 +BuildRequires: python +%else +BuildRequires: python2 +%endif +BuildRequires: pkgconfig(libusb-1.0) +%if 0%{?suse_version} > 1325 +BuildRequires: libboost_date_time-devel +BuildRequires: libboost_filesystem-devel +BuildRequires: libboost_program_options-devel +BuildRequires: libboost_system-devel +BuildRequires: libboost_thread-devel +%else +BuildRequires: boost-devel +%endif + +%description +Stand-alone libusrp for USRP1 from old gnuradio.git. + +%package -n %{libname} +Summary: Stand-alone libusrp for USRP1 from old gnuradio.git +Group: System/Libraries + +%description -n %{libname} +Stand-alone libusrp for USRP1 from old gnuradio.git. + +%package devel +Summary: Development files for libusrp +Group: Development/Libraries/C and C++ +Requires: %{libname} = %{version} + +%description devel +Stand-alone libusrp for USRP1 from old gnuradio.git. + +This subpackage contains libraries and header files for developing +applications that want to make use of libusrp. + +%package -n usrp-tools +Summary: Tools for the URSP1 SDR +Group: Hardware/Other + +%description -n usrp-tools +Tools for the URSP1 SDR. + +%package -n usrp-firmware +Summary: Firmware files for the URSP1 SDR +Group: Hardware/Other +Requires: usrp-tools = %{version} +BuildArch: noarch + +%description -n usrp-firmware +Firmware files for the USRP1 SDR. + +%prep +%setup -q + +%build +echo "%{version}" >.tarball-version +autoreconf -fiv +%configure +# parallel build is br0ken +# -> https://osmocom.org/issues/3970#change-15556 +make V=1 # %{?_smp_mflags} + +%install +%make_install +rm -f %{buildroot}%{_libdir}/libusrp.la +# FIXME: gnuradio swig stuff shouldn't be there +rm -rf %{buildroot}%{_includedir}/gnuradio/ +%fdupes %{buildroot}%{_datadir}/usrp + +%post -n %{libname} -p /sbin/ldconfig +%postun -n %{libname} -p /sbin/ldconfig + +%files -n usrp-tools +%{_bindir}/usrp_cal_dc_offset +%{_bindir}/usrper + +%files -n %{libname} +%{_libdir}/libusrp*.so.* + +%files -n usrp-firmware +%dir %{_datadir}/usrp +%{_datadir}/usrp/rev2 +%{_datadir}/usrp/rev4 + +%files devel +%{_includedir}/usrp +%{_libdir}/libusrp.so +%{_libdir}/pkgconfig/usrp.pc + +%changelog