mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 16:57:46 +08:00
37 lines
685 B
Bash
37 lines
685 B
Bash
|
#
|
||
|
# Platform Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer abveritas@chakra-project.org
|
||
|
# contributor Tobias Powalowski <tpowa@archlinux.org>
|
||
|
|
||
|
pkgname=spandsp
|
||
|
pkgver=0.0.6pre21
|
||
|
pkgrel=1
|
||
|
pkgdesc="A DSP library for telephony"
|
||
|
arch=('x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://www.soft-switch.org/"
|
||
|
depends=('libtiff')
|
||
|
source=("http://www.soft-switch.org/downloads/$pkgname/$pkgname-$pkgver.tgz")
|
||
|
options=(!libtool)
|
||
|
md5sums=('492f3790439891c07d8c06e97ccbfcf1')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-0.0.6
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd $srcdir/$pkgname-0.0.6
|
||
|
|
||
|
make check
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$pkgname-0.0.6
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|
||
|
|