mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
28 lines
766 B
Bash
28 lines
766 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=webrtc-audio-processing
|
|
pkgver=0.1
|
|
pkgrel=6
|
|
pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
|
|
arch=('x86_64')
|
|
url="http://freedesktop.org/software/pulseaudio/webrtc-audio-processing"
|
|
license=(custom)
|
|
depends=('gcc-libs')
|
|
options=(!libtool)
|
|
source=("http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('da25bb27812c8404060d4cc0dc712f04')
|
|
|
|
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"
|
|
}
|