2012-05-19 11:02:03 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
|
|
|
|
pkgname=webrtc-audio-processing
|
|
|
|
pkgver=0.1
|
2012-12-07 09:54:45 +08:00
|
|
|
pkgrel=4
|
2012-05-19 11:02:03 +08:00
|
|
|
pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
|
2012-12-07 09:54:45 +08:00
|
|
|
arch=('x86_64')
|
2012-05-19 11:02:03 +08:00
|
|
|
url="http://freedesktop.org/software/pulseaudio/webrtc-audio-processing"
|
|
|
|
license=(custom)
|
2012-12-07 09:54:45 +08:00
|
|
|
depends=('gcc-libs')
|
2012-05-19 11:02:03 +08:00
|
|
|
options=(!libtool)
|
|
|
|
source=("http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/$pkgname-$pkgver.tar.xz")
|
2012-12-07 09:54:45 +08:00
|
|
|
md5sums=('da25bb27812c8404060d4cc0dc712f04')
|
2012-05-19 11:02:03 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
install -Dm644 PATENTS "$pkgdir/usr/share/licenses/$pkgname/PATENTS"
|
|
|
|
}
|