# $Id$ # Maintainer: Kyle Keen # Contributor: Dominik Heidler # ALARM: Kevin Mihelich # - patch out ineffectual neon check pkgname=libuhd pkgver=3.10.2.0 _verstring='003_010_002_000' pkgrel=2 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver" arch=('x86_64' 'i686') url="http://www.ettus.com/kb/category/software-documentation/uhd-manual" license=('GPL') depends=('boost-libs' 'orc' 'libusb') optdepends=('python2: usrp utils') makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako') source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz" '0001-remove-ineffectual-neon-check.patch') md5sums=('f1e1977cd6c146daf800df681cb22944' '2cb16216ee735ab1160e572d523155ea') prepare() { patch -d uhd-release_$_verstring -p1 -i ../0001-remove-ineffectual-neon-check.patch } build() { cd "$srcdir/uhd-release_$_verstring/host" # fix for py2 find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \ -DPYTHON_EXECUTABLE=/usr/bin/python2 \ -DENABLE_EXAMPLES=OFF \ -DENABLE_UTILS=ON \ -DENABLE_TESTS=OFF \ -DENABLE_E100=ON \ -DENABLE_E300=ON make } check() { cd "$srcdir/uhd-release_$_verstring/host/build" make test } package() { cd "$srcdir/uhd-release_$_verstring/host/build" make DESTDIR="$pkgdir" install install -Dm644 "../utils/uhd-usrp.rules" "$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules" }