[arch-commits] Commit in libvolk/repos (2 files)

Kyle Keen kkeen at archlinux.org
Fri Aug 16 05:07:34 UTC 2019


    Date: Friday, August 16, 2019 @ 05:07:34
  Author: kkeen
Revision: 499695

archrelease: copy trunk to community-staging-x86_64

Added:
  libvolk/repos/community-staging-x86_64/
  libvolk/repos/community-staging-x86_64/PKGBUILD
    (from rev 499694, libvolk/trunk/PKGBUILD)

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

Copied: libvolk/repos/community-staging-x86_64/PKGBUILD (from rev 499694, libvolk/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-08-16 05:07:34 UTC (rev 499695)
@@ -0,0 +1,51 @@
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+
+pkgname=libvolk
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="The Vector-Optimized Library of Kernels from Gnuradio"
+arch=('x86_64')
+url="http://libvolk.org/"
+license=('GPL3')
+depends=('gcc-libs' 'boost-libs' 'orc' 'python2' 'python2-six')
+makedepends=('boost' 'cmake' 'python2-mako')
+#source=("http://libvolk.org/releases/volk-$pkgver.tar.gz"{,.asc})
+#source=("http://libvolk.org/releases/volk-$pkgver.tar.gz")
+source=("https://github.com/gnuradio/volk/releases/download/v$pkgver/volk-v$pkgver.tar.gz"{,.asc})
+md5sums=('f40b09feb2e88bd0a50aecc4301e7246'
+         'SKIP')
+validpgpkeys=('09E749D885FA881A7E84E823385323EE6402091D'
+              'D74F9F146E7F755783583158B343B2BA293E5174')
+
+# doxygen for docs
+
+prepare() {
+  cd "$srcdir/volk-v$pkgver"
+  sed -i -e "s|#![ ]*/usr/bin/env python$|&2|" $(find ./ -name '*.py')
+}
+
+build() {
+  export PYTHON=python2
+  cd "$srcdir/volk-v$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake \
+    -DPYTHON_EXECUTABLE=$(which python2) \
+    -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/volk-v$pkgver/build"
+  export PYTHON=python2
+  return
+  if [[ "$CARCH" == "x86_64" ]]; then
+    make test
+  fi
+}
+
+package() {
+  cd "$srcdir/volk-v$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list