blob: 95449c7978a1428fb70659365e89f216fa5c70cb (
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
31
32
33
|
# Maintainer: Antoni Przybylik <antoni.przybylik@wp.pl>
# Contributor: Yuval Adam <yuval at y3xz dot com>
pkgname=libosmo-dsp
pkgver=0.4.0
pkgrel=1
pkgdesc="A library with SDR DSP primitives"
arch=('x86_64')
url="https://git.osmocom.org/libosmo-dsp/"
license=('GPL2')
depends=('fftw')
makedepends=('git')
source=('git://git.osmocom.org/libosmo-dsp.git')
sha1sums=('SKIP')
_gitname=libosmo-dsp
build()
{
cd $_gitname
libtoolize
aclocal
autoconf
autoheader
automake --add-missing
./configure --prefix=/usr
make
}
package()
{
cd $_gitname
make DESTDIR="$pkgdir" install
}
|