PKGBUILDs/community/libuhd/PKGBUILD

49 lines
1.2 KiB
Bash
Raw Normal View History

2016-05-14 17:24:24 +00:00
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Dominik Heidler <dheidler@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-04-29 12:53:13 +00:00
# - set -DNEON_SIMD_ENABLE=OFF
2016-05-14 17:24:24 +00:00
pkgname=libuhd
2020-01-16 01:19:26 +00:00
pkgver=3.15.0.0
2020-06-03 23:53:35 +00:00
pkgrel=3
2016-05-14 17:24:24 +00:00
pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
2018-01-06 20:51:18 +00:00
arch=('x86_64')
2020-06-03 23:53:35 +00:00
url="https://files.ettus.com/manual/"
2016-05-14 17:24:24 +00:00
license=('GPL')
2017-05-29 17:29:28 +00:00
depends=('boost-libs' 'orc' 'libusb')
2020-01-16 01:19:26 +00:00
optdepends=('python: usrp utils')
makedepends=('cmake' 'boost' 'python-mako')
2019-04-29 12:53:13 +00:00
# gpsd? dpdk?
2016-05-14 17:24:24 +00:00
2019-04-29 12:53:13 +00:00
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz")
2020-01-16 01:19:26 +00:00
md5sums=('cf589d5130ebd8348e3dbf129a7c5c38')
2016-05-14 17:24:24 +00:00
build() {
2018-06-08 05:01:19 +00:00
cd "$srcdir/uhd-$pkgver/host"
2016-05-14 17:24:24 +00:00
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
2020-01-16 01:19:26 +00:00
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
2016-05-14 17:24:24 +00:00
-DENABLE_EXAMPLES=OFF \
-DENABLE_UTILS=ON \
-DENABLE_TESTS=OFF \
-DENABLE_E100=ON \
2019-04-29 12:53:13 +00:00
-DENABLE_E300=ON \
-DNEON_SIMD_ENABLE=OFF
2016-05-14 17:24:24 +00:00
make
}
check() {
2018-06-08 05:01:19 +00:00
cd "$srcdir/uhd-$pkgver/host/build"
2016-05-14 17:24:24 +00:00
make test
}
package() {
2018-06-08 05:01:19 +00:00
cd "$srcdir/uhd-$pkgver/host/build"
2016-05-14 17:24:24 +00:00
make DESTDIR="$pkgdir" install
install -Dm644 "../utils/uhd-usrp.rules" "$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
}