Date: Tuesday, October 4, 2022 @ 19:59:10
  Author: arojas
Revision: 1321268

archrelease: copy trunk to community-staging-x86_64

Added:
  libuhd/repos/community-staging-x86_64/
  libuhd/repos/community-staging-x86_64/PKGBUILD
    (from rev 1321267, libuhd/trunk/PKGBUILD)

----------+
 PKGBUILD |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

Copied: libuhd/repos/community-staging-x86_64/PKGBUILD (from rev 1321267, 
libuhd/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-10-04 19:59:10 UTC (rev 1321268)
@@ -0,0 +1,49 @@
+# Maintainer: Kyle Keen <[email protected]>
+# Contributor: Dominik Heidler <[email protected]>
+
+pkgname=libuhd
+pkgver=4.3.0.0
+pkgrel=1
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
+arch=('x86_64')
+url="https://files.ettus.com/manual/";
+license=('GPL')
+depends=('boost-libs' 'orc' 'libusb')
+optdepends=('python: usrp utils'
+            'python-numpy: python api')
+makedepends=('cmake' 'boost' 'python-setuptools' 'python-mako' 'python-numpy')
+options=(!lto)
+# gpsd?  dpdk?
+
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz";)
+sha256sums=('8695800d593c58b557cbf9905b02bbf65a74ca68674e8c8c8c28bb6e203635ad')
+
+prepare() {
+  cd "$srcdir/uhd-$pkgver/host"
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
+           -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+           -DENABLE_PYTHON_API=ON \
+           -DENABLE_EXAMPLES=OFF \
+           -DENABLE_UTILS=ON \
+           -DENABLE_TESTS=OFF \
+           -DENABLE_E100=ON \
+           -DENABLE_E300=ON
+  make
+}
+
+check() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+  make test
+}
+
+package() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "../utils/uhd-usrp.rules" 
"$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
+} 

Reply via email to