blob: a2e4b56bdd0e592ce66c07da69bf18a0154a67ef (
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: SteamedFish <steamedfish@hotmail.com>
pkgname=dumphfdl
pkgver=1.6.1
pkgrel=1
pkgdesc="Multichannel HFDL decoder"
arch=('x86_64' 'aarch64')
url="https://github.com/szpajder/dumphfdl"
license=('GPL3')
depends=('libacars' 'glib2' 'liquid-dsp' 'fftw' 'libconfig')
makedepends=('cmake' 'git')
optdepends=(
'soapysdr'
'libsdrplay: Proprietary API service for SDRplay devices.'
'sqlite: for enriching messages with aircraft data read from SQB database'
'statsd-c-client: for Etsy StatsD statistics'
'zeromq: for ZeroMQ networked output'
'gperftools: for profiling'
)
source=("$pkgname"::"git+https://github.com/szpajder/dumphfdl#tag=v${pkgver}")
md5sums=('SKIP')
build() {
cmake -B build -S "$srcdir/$pkgname" -DCMAKE_INSTALL_PREFIX=/usr
make -C build
}
package() {
make -C build DESTDIR="$pkgdir/" install
}
|