mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to fix AArch64 build
|
|
|
|
pkgname=webrtc-audio-processing
|
|
pkgver=0.3.1
|
|
pkgrel=3.1
|
|
pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
|
|
url="https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/"
|
|
arch=(x86_64)
|
|
license=(custom)
|
|
depends=(gcc-libs)
|
|
makedepends=(git)
|
|
provides=(libwebrtc_audio_processing.so)
|
|
_commit=e882a5442ac22c93648e12837248d651d18b9247 # tags/v0.3.1^0
|
|
source=("git+https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing.git#commit=$_commit"
|
|
'webrtc-fix-typedefs-on-other-arches.patch')
|
|
sha256sums=('SKIP'
|
|
'98ba3bcf8fc11c9c76eb707ee81a3ab668f10ad8cc4915deb842a3032557d15f')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/^v//;s/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
patch -p1 -i ../webrtc-fix-typedefs-on-other-arches.patch
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
./configure --prefix=/usr --disable-static
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
|
|
}
|
|
|
|
# vim:set sw=2 et:
|