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/liblms7002m | |
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/liblms7002m')
-rw-r--r-- | pcr/liblms7002m/PKGBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pcr/liblms7002m/PKGBUILD b/pcr/liblms7002m/PKGBUILD new file mode 100644 index 000000000..ebb8ff3f5 --- /dev/null +++ b/pcr/liblms7002m/PKGBUILD @@ -0,0 +1,48 @@ +# $id$ +# Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> +pkgname=liblms7002m +pkgver=r3.g27fb96f +pkgrel=1 +pkgdesc="Compact LMS7002 library suitable for MCU" +url="https://github.com/xtrx-sdr/liblms7002m" +arch=(armv7h i686 x86_64) +license=('LGPL') +depends=('python2-cheetah') +makedepends=('git' 'cmake') +commit=27fb96fbad28676fa37639062e8990e8cb37c029 +source=("git://github.com/xtrx-sdr/liblms7002m#commit=$commit") +sha512sums=('SKIP') + +pkgver() { + cd $pkgname + echo r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD) +} + +prepare() { + cd "$srcdir/$pkgname" + sed 's/^python/python2/' -i regs/genenum.sh +} + +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 +} |