summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e9bf18b2c67128b80ef5232ad003d9c894e2e2b3 (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
# Maintainer: Vanya Sergeev <vsergeev@gmail.com>
pkgname=luaradio
pkgver=0.5.1
pkgrel=1
pkgdesc="A lightweight, embeddable software-defined radio framework built on LuaJIT"
arch=('i686' 'x86_64' 'armv7h')
url="http://luaradio.io"
license=('MIT')
depends=('luajit')
optdepends=('liquid-dsp: acceleration'
            'libvolk: acceleration'
            'fftw: acceleration')
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
}