1 |
Name: uhd |
2 |
URL: http://code.ettus.com/redmine/ettus/projects/uhd/wiki |
3 |
Version: 3.4.1 |
4 |
Release: %mkrel 1 |
5 |
Group: Communications |
6 |
Summary: Universal Hardware Driver for Ettus Research products |
7 |
License: GPLv3+ |
8 |
Source0: %{name}-%{version}.tar.gz |
9 |
# Create tarball from git with: |
10 |
# $ make-tarball uhd git://code.ettus.com/ettus/uhd.git |
11 |
# See note in make-tarball script |
12 |
Source1: make-tarball |
13 |
|
14 |
BuildRequires: cmake |
15 |
BuildRequires: boost-devel |
16 |
BuildRequires: libusb1-devel |
17 |
BuildRequires: liborc-devel |
18 |
BuildRequires: python-cheetah |
19 |
BuildRequires: python-docutils |
20 |
BuildRequires: doxygen |
21 |
BuildRequires: pkgconfig |
22 |
|
23 |
%description |
24 |
The UHD is the universal hardware driver for Ettus Research products. |
25 |
The goal of the UHD is to provide a host driver and API for current and |
26 |
future Ettus Research products. It can be used standalone without GNU Radio. |
27 |
|
28 |
%prep |
29 |
%setup -q |
30 |
|
31 |
%build |
32 |
mkdir -p host/build |
33 |
cd host/build |
34 |
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr |
35 |
%make |
36 |
|
37 |
%check |
38 |
cd host/build |
39 |
make test |
40 |
|
41 |
%install |
42 |
pushd host/build |
43 |
make install DESTDIR=%{buildroot} |
44 |
|
45 |
# Allow access only to users in usrp group |
46 |
sed -i 's/MODE:="0666"/MODE:="0660"/' %{buildroot}%{_datadir}/uhd/utils/uhd-usrp.rules |
47 |
mkdir -p %{buildroot}%{_sysconfdir}/udev/rules.d |
48 |
mv %{buildroot}%{_datadir}/uhd/utils/uhd-usrp.rules %{buildroot}%{_sysconfdir}/udev/rules.d/10-usrp-uhd.rules |
49 |
|
50 |
# Remove binaries for tests, examples |
51 |
rm -rf %{buildroot}%{_datadir}/uhd/{tests,examples} |
52 |
|
53 |
# Move the utils stuff to libexec dir |
54 |
mkdir -p %{buildroot}%{_libexecdir}/uhd |
55 |
mv %{buildroot}%{_datadir}/uhd/utils/* %{buildroot}%{_libexecdir}/uhd |
56 |
|
57 |
popd |
58 |
# Package base docs to base package |
59 |
mkdir _tmpdoc |
60 |
mv %{buildroot}%{_docdir}/%{name}/{AUTHORS.txt,LICENSE.txt,README.txt} _tmpdoc |
61 |
|
62 |
%package devel |
63 |
Summary: Development files for UHD |
64 |
Group: Communications |
65 |
Requires: %{name} = %{version}-%{release} |
66 |
|
67 |
%description devel |
68 |
Development files for the Universal Hardware Driver (UHD). |
69 |
|
70 |
%package doc |
71 |
Summary: Documentation files for UHD |
72 |
Group: Communications |
73 |
BuildArch: noarch |
74 |
|
75 |
%description doc |
76 |
Documentation for the Universal Hardware Driver (UHD). |
77 |
|
78 |
%pre -n uhd |
79 |
getent group usrp >/dev/null || groupadd -r usrp |
80 |
|
81 |
%files |
82 |
%doc _tmpdoc/* |
83 |
%{_bindir}/uhd_find_devices |
84 |
%{_bindir}/uhd_usrp_probe |
85 |
%{_bindir}/uhd_cal_rx_iq_balance |
86 |
%{_bindir}/uhd_cal_tx_dc_offset |
87 |
%{_bindir}/uhd_cal_tx_iq_balance |
88 |
%config(noreplace) %{_sysconfdir}/udev/rules.d/10-usrp-uhd.rules |
89 |
%{_libdir}/lib*.so.* |
90 |
%{_libexecdir}/uhd |
91 |
|
92 |
%files devel |
93 |
%{_includedir}/* |
94 |
%{_libdir}/lib*.so |
95 |
%{_libdir}/pkgconfig/*.pc |
96 |
|
97 |
%files doc |
98 |
%doc %{_docdir}/%{name}/* |
99 |
|