mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 01:17:14 +08:00
31 lines
864 B
Bash
31 lines
864 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=webrtc-audio-processing
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
|
|
arch=(i686 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")
|
|
sha256sums=('ed4b52f9c2688b97628035a5565377d74704d7c04de4254a768df3342c7afedc')
|
|
|
|
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"
|
|
}
|