diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2018-12-01 01:39:54 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2018-12-02 16:11:48 +0100 |
commit | 686aed3b3f6b7d03349e365d08196a6ec8da5bee (patch) | |
tree | 9a9ae8311c1ef6f632bac3bb8f50e9af607019a7 /pcr-testing/libxtrxdsp/PKGBUILD | |
parent | 1c9b482b66cc34c003cf5d709b1b2ebbf50495b9 (diff) | |
download | abslibre-686aed3b3f6b7d03349e365d08196a6ec8da5bee.tar.gz abslibre-686aed3b3f6b7d03349e365d08196a6ec8da5bee.tar.bz2 abslibre-686aed3b3f6b7d03349e365d08196a6ec8da5bee.zip |
pcr-testing: Cleanup xtrx related packages
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr-testing/libxtrxdsp/PKGBUILD')
-rw-r--r-- | pcr-testing/libxtrxdsp/PKGBUILD | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/pcr-testing/libxtrxdsp/PKGBUILD b/pcr-testing/libxtrxdsp/PKGBUILD index 3ccab5b01..641d3cc8c 100644 --- a/pcr-testing/libxtrxdsp/PKGBUILD +++ b/pcr-testing/libxtrxdsp/PKGBUILD @@ -1,11 +1,11 @@ # $Id$ # Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> pkgname=libxtrxdsp -pkgver=r0+git -pkgrel=1 +pkgver=r6.g5dc9e4d +pkgrel=2 pkgdesc="DSP specific function for SDR in general and XTRX in specific" url="https://github.com/xtrx-sdr/libxtrxdsp" -arch=(armv7h i686 x86_64) +arch=('armv7h' 'i686' 'x86_64') license=('LGPL') makedepends=('git' 'cmake') commit=5dc9e4d4c440ef5ce9ecc26b5c730ece2e99fd24 @@ -18,19 +18,11 @@ pkgver() { } build() { - case "$CARCH" in - i686) ARCH=i386;; - x86_64) ARCH=x86_64;; - arhmv7h) ARCH=armhf;; - esac - cd "$srcdir/$pkgname" mkdir -p build cd build cmake \ - -DENABLE_SOAPY=NO \ - -DPYTHON_EXECUTABLE=/usr/bin/python2 \ -DFORCE_ARCH=x86 \ ../ make |