blob: de0c7426e7524ef42801926a8afa385eebe09b99 (
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
34
35
36
37
38
39
|
# Contributor: Carlo Landmeter
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=spandsp
pkgver=0.0.6_pre21
_ver=${pkgver/_/}
pkgrel=0
pkgdesc="SpanDSP is a library of DSP functions for telephony"
url="http://www.soft-switch.org/installing-spandsp.html"
arch="all"
license="GPL"
depends=
depends_dev="tiff-dev"
makedepends="$depends_dev"
install=
subpackages="$pkgname-dev"
source="http://www.soft-switch.org/downloads/spandsp/$pkgname-$_ver.tgz"
_builddir="$srcdir"/$pkgname-0.0.6
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install
rm "$pkgdir"/usr/lib/*.la
}
md5sums="492f3790439891c07d8c06e97ccbfcf1 spandsp-0.0.6pre21.tgz"
|