blob: cfc2931701ad591fd21fa9cef26f5f3fedfdd79d (
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
|
# Maintainer: Andrew O'Neill <andrew at haunted dot sh>
pkgname=satdump
pkgver=1.2.2
pkgrel=1
pkgdesc='A generic satellite processing software'
arch=('x86_64')
license=('GPL-3.0-only')
url='https://github.com/altillimity/SatDump'
depends=('airspy' 'fftw' 'glfw' 'hackrf' 'jemalloc' 'libad9361' 'libpng' 'libvolk' 'nng' 'ocl-icd' 'portaudio' 'rtl-sdr' 'zenity' 'zstd')
makedepends=('boost' 'cmake' 'opencl-headers')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
optdepends=('limesuite' 'bladerf')
sha256sums=('2ab7c6126e426ad79972b274cc380c0bb04c9e755d746d67f3af92c1dd569209')
build() {
cd "SatDump-${pkgver}"
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
}
package() {
cd "SatDump-${pkgver}/build"
make DESTDIR="${pkgdir}" install
}
|