blob: 6e2366b474defc31f683366886b28bd67cc3cbe0 (
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
|
# Maintainer: Davide Gerhard <rainbow@irh.it>
pkgname=gr-satellites
pkgver=5.6.0
pkgrel=1
pkgdesc="satellite decoder blocks for GNURadio"
arch=('x86_64' 'aarch64')
url="https://github.com/daniestevez/gr-satellites"
license=('GPL3')
depends=('gnuradio' 'python-construct>=2.9' 'python-requests' 'fmt' 'gnuradio-iqbal')
optdepends=('feh: For realtime image decoders'
'doxygen: For document generation')
makedepends=('cmake' 'pybind11')
conflicts=("${pkgname}")
source=("${pkgname}-${pkgver}.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('77363103c5eb58c6052b75456363d1474b09764e2bfb2ce678884f08284befc1')
build() {
cmake -B build -S $pkgname-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_SKIP_RPATH=YES \
-Wno-dev
make -C build
}
package() {
make -C build DESTDIR="$pkgdir" install
}
|