summaryrefslogtreecommitdiff
path: root/libre/bladerf/PKGBUILD
blob: 158da61db352fca8ab9c0136d56707f139d9a5ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Maintainer (Arch): Kyle Keen <keenerd@gmail.com>
# Contributor (Arch): Dominik Heidler <dheidler@gmail.com>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>

# it looks like the release model has gotten better
# keeping it more modular for now though

# parabola changes and rationale:
#  - removed semifree firmware and image blobs. we can't build them because
#    proprietary toolchains and libraries are required.

pkgname=bladerf
_libver=1.9.0
_CLIver=1.5.1
_FPGAver=0.7.1
_firmver=2.0.0
pkgver=$_libver
pkgrel=1
pkgrel+=.par1
pkgdesc="Driver, userspace for the bladeRF SDR."
url="https://github.com/Nuand/bladeRF"
# https://github.com/Nuand/bladeRF/tags
arch=('x86_64' 'i686' 'armv7h')
license=('GPL2')
depends=('libusb')
makedepends=('cmake' 'help2man' 'doxygen')
#backup=("etc/bladerf.cfg")

source=("https://github.com/Nuand/bladeRF/archive/libbladeRF_v$_libver.tar.gz")

sha256sums=('33913f3b77af8543a21a28b51702c77c6d624db296a22b11421a1fec3ea00e4f')

# bladeRF-cli is bundled with libbladeRF
# bladeRF-cli can use libtecla (aur)?

prepare() {
  cd "$srcdir/bladeRF-libbladeRF_v$_libver"
  # FS#47168
  sed -i 's|MODE.*$|TAG+="uaccess"|' host/misc/udev/88-nuand.rules.in

  # todo, report warning
  sed -i '94i add_definitions(-Wno-error=format-truncation)' host/CMakeLists.txt

  # FS#55326
  sed -i '44s/^else/#&/' host/misc/udev/CMakeLists.txt
}

build() {
  cd "$srcdir/bladeRF-libbladeRF_v$_libver"
  mkdir -p build
  cd build
  CFLAGS+=" -Wno-error=stringop-truncation" cmake \
    -DCMAKE_BUILD_TYPE=Release \
    -DINSTALL_UDEV_RULES=ON \
    -DBUILD_DOCUMENTATION=ON \
    -DCMAKE_INSTALL_LIBDIR:PATH=lib \
    -Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
    -DCMAKE_INSTALL_PREFIX=/usr ../
  make
  # ENABLE_FX3_BUILD needs cypress toolchain
  # really really wants to put files in /usr/lib64
}

package() {
  cd "$srcdir/bladeRF-libbladeRF_v$_libver/build"
  make DESTDIR="${pkgdir}" install

  # FS#54105
  cd "$pkgdir/etc/udev/rules.d/"
  mv 88-nuand.rules 70-nuand.rules
}