[arch-commits] Commit in libuhd/repos (4 files)

Kyle Keen kkeen at archlinux.org
Thu Sep 4 21:51:15 UTC 2014


    Date: Thursday, September 4, 2014 @ 23:51:15
  Author: kkeen
Revision: 118288

archrelease: copy trunk to community-testing-x86_64, community-testing-i686

Added:
  libuhd/repos/community-testing-i686/
  libuhd/repos/community-testing-i686/PKGBUILD
    (from rev 118287, libuhd/trunk/PKGBUILD)
  libuhd/repos/community-testing-x86_64/
  libuhd/repos/community-testing-x86_64/PKGBUILD
    (from rev 118287, libuhd/trunk/PKGBUILD)

-----------------------------------+
 community-testing-i686/PKGBUILD   |   49 ++++++++++++++++++++++++++++++++++++
 community-testing-x86_64/PKGBUILD |   49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)

Copied: libuhd/repos/community-testing-i686/PKGBUILD (from rev 118287, libuhd/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2014-09-04 21:51:15 UTC (rev 118288)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+
+pkgname=libuhd
+pkgver=3.7.2
+_verstring=003_007_002
+pkgrel=1
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
+arch=('x86_64' 'i686')
+url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki"
+license=('GPL')
+depends=('boost-libs' 'orc' 'libusbx')
+optdepends=('python2: usrp utils')
+makedepends=('cmake' 'boost' 'python2-cheetah')
+
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz")
+md5sums=('515387ad594a1ca1e4447e97d4f78aa7')
+
+# consider making a firmware package
+# http://files.ettus.com/binaries/master_images/archive/
+
+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
+  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"
+} 
+

Copied: libuhd/repos/community-testing-x86_64/PKGBUILD (from rev 118287, libuhd/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2014-09-04 21:51:15 UTC (rev 118288)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+
+pkgname=libuhd
+pkgver=3.7.2
+_verstring=003_007_002
+pkgrel=1
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
+arch=('x86_64' 'i686')
+url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki"
+license=('GPL')
+depends=('boost-libs' 'orc' 'libusbx')
+optdepends=('python2: usrp utils')
+makedepends=('cmake' 'boost' 'python2-cheetah')
+
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz")
+md5sums=('515387ad594a1ca1e4447e97d4f78aa7')
+
+# consider making a firmware package
+# http://files.ettus.com/binaries/master_images/archive/
+
+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
+  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"
+} 
+




More information about the arch-commits mailing list