diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2018-11-30 02:23:48 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2018-11-30 02:32:46 +0100 |
commit | 010aa51bbff969b8fb51a6cbc8cd3239975dc696 (patch) | |
tree | 3a13691b395d7a14442cce4ddbe0c401dc19ea7b /pcr/libxtrxdsp | |
parent | 57f74a48d187da777bc28ec6920787f7a1248473 (diff) | |
download | abslibre-010aa51bbff969b8fb51a6cbc8cd3239975dc696.tar.gz abslibre-010aa51bbff969b8fb51a6cbc8cd3239975dc696.tar.bz2 abslibre-010aa51bbff969b8fb51a6cbc8cd3239975dc696.zip |
pcr: Add prelimirary userspace support for the xtrx SDR
Caveats:
- There is no package for xtrx-linux-pcie-drv yet
- The liblms7002m, libxtrx and libxtrxdsp are installed in
/usr/local/
- While gqrx can be launched, I didn't manage to receive
commercial FM stations with it yet. That may be due to:
- my hardware setup (antennas, etc) which is far from
being obtimal
- my software setup (i686 hasn't been reported to work
yet)
- Wrong parameters in gqrx: the device seem to be other
and the device string seem to be "xtrx", but other than
that I didn't have a good enough waterfall to verify
that it is receiving something.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/libxtrxdsp')
-rw-r--r-- | pcr/libxtrxdsp/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pcr/libxtrxdsp/PKGBUILD b/pcr/libxtrxdsp/PKGBUILD new file mode 100644 index 000000000..3ccab5b01 --- /dev/null +++ b/pcr/libxtrxdsp/PKGBUILD @@ -0,0 +1,42 @@ +# $Id$ +# Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> +pkgname=libxtrxdsp +pkgver=r0+git +pkgrel=1 +pkgdesc="DSP specific function for SDR in general and XTRX in specific" +url="https://github.com/xtrx-sdr/libxtrxdsp" +arch=(armv7h i686 x86_64) +license=('LGPL') +makedepends=('git' 'cmake') +commit=5dc9e4d4c440ef5ce9ecc26b5c730ece2e99fd24 +source=("git://github.com/xtrx-sdr/libxtrxdsp#commit=$commit") +sha512sums=('SKIP') + +pkgver() { + cd $pkgname + echo r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD) +} + +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 +} + +package() { + cd "$srcdir/$pkgname/build/" + make DESTDIR="${pkgdir}" install +} |