Date: Tuesday, May 2, 2023 @ 21:28:01
Author: arojas
Revision: 1455932
archrelease: copy trunk to community-staging-x86_64
Added:
libvolk/repos/community-staging-x86_64/
libvolk/repos/community-staging-x86_64/PKGBUILD
(from rev 1455931, libvolk/trunk/PKGBUILD)
libvolk/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
Copied: libvolk/repos/community-staging-x86_64/PKGBUILD (from rev 1455931,
libvolk/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-05-02 21:28:01 UTC (rev 1455932)
@@ -0,0 +1,58 @@
+# Maintainer: Kyle Keen <[email protected]>
+
+pkgname=libvolk
+epoch=2
+pkgver=3.0.0
+_cpuver=0.6.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' 'python' 'python-six')
+makedepends=('boost' 'cmake' 'python-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})
+source=("volk-$pkgver.tgz::https://github.com/gnuradio/volk/archive/v$pkgver.tar.gz"
+
"cpufeatures-$_cpuver.tgz::https://github.com/google/cpu_features/archive/v$_cpuver.tar.gz")
+# new upstream maintainer, no sig for 2.1.0 or real release?
+sha256sums=('617c25a5a240e41e50d695851925541b19e011d516c3e0c288a5aeefb3ceb7fd'
+ '95a1cf6f24948031df114798a97eea2a71143bd38a4d07d9a758dda3924c1932')
+validpgpkeys=('09E749D885FA881A7E84E823385323EE6402091D'
+ 'D74F9F146E7F755783583158B343B2BA293E5174')
+
+# doxygen for docs
+
+prepare() {
+ cd "$srcdir/volk-$pkgver"
+ rmdir cpu_features
+ ln -sf "$srcdir/cpu_features-$_cpuver" cpu_features
+}
+
+build() {
+ export PYTHON=python3
+ cd "$srcdir/volk-$pkgver"
+
+ mkdir -p build
+ cd build
+ cmake \
+ -DPYTHON_EXECUTABLE=$(which python3) \
+ -DCMAKE_C_FLAGS="$CFLAGS -ffat-lto-objects" \
+ -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+ make
+}
+
+check() {
+ cd "$srcdir/volk-$pkgver/build"
+ export PYTHON=python3
+ return
+ if [[ "$CARCH" == "x86_64" ]]; then
+ make test
+ fi
+}
+
+package() {
+ cd "$srcdir/volk-$pkgver/build"
+ make DESTDIR="$pkgdir" install
+}