summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ab3ce0e2d2369da48d2f559b20fcb180b80d7ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Vanya Sergeev <v@sergeev.io>
pkgname=luaradio
pkgver=0.9.1
pkgrel=1
pkgdesc="A lightweight, embeddable software-defined radio framework built on LuaJIT"
arch=('i686' 'x86_64' 'armv7h')
url="https://luaradio.io"
license=('MIT')
depends=('luajit' 'liquid-dsp' 'libvolk' 'fftw')
optdepends=('gnuplot: plotting support')
source=("git+https://github.com/vsergeev/luaradio.git#tag=v$pkgver")
md5sums=('SKIP')

build() {
	cd "$pkgname"/embed
	make PREFIX="/usr" lib
}

package() {
	cd "$pkgname"/embed
	make PREFIX="/usr" DESTDIR="$pkgdir/" install
}