From 154be9afe6fa4c32a26066b9f9ea8d0808590e9e Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Mon, 7 Feb 2022 06:33:44 +0000 Subject: [PATCH] community/libuhd to 4.1.0.5-1.1 --- community/libuhd/PKGBUILD | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/community/libuhd/PKGBUILD b/community/libuhd/PKGBUILD index f253d5496..86545ab79 100644 --- a/community/libuhd/PKGBUILD +++ b/community/libuhd/PKGBUILD @@ -1,13 +1,11 @@ # Maintainer: Kyle Keen # Contributor: Dominik Heidler -# ALARM: Kevin Mihelich -# - set -DNEON_SIMD_ENABLE=OFF -# - explicitly link v5/v6 with libatomic +# remove when bumped upstream pkgname=libuhd pkgver=4.1.0.5 -pkgrel=1 +pkgrel=1.1 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver" arch=('x86_64') url="https://files.ettus.com/manual/" @@ -30,7 +28,6 @@ prepare() { build() { cd "$srcdir/uhd-$pkgver/host/build" - [[ $CARCH == "arm" || $CARCH == "armv6h" ]] && echo "target_link_libraries(uhd atomic)" >> "$srcdir/uhd-$pkgver/host/lib/CMakeLists.txt" cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \ -DPYTHON_EXECUTABLE=/usr/bin/python3 \ -DENABLE_PYTHON_API=ON \ @@ -38,8 +35,7 @@ build() { -DENABLE_UTILS=ON \ -DENABLE_TESTS=OFF \ -DENABLE_E100=ON \ - -DENABLE_E300=ON \ - -DNEON_SIMD_ENABLE=OFF + -DENABLE_E300=ON make }