55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: David Runge <dvzrv@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=alsa-lib
|
|
pkgver=1.2.13
|
|
pkgrel=1
|
|
pkgdesc="An alternative implementation of Linux sound support"
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url="https://www.alsa-project.org"
|
|
license=(LGPL-2.1-or-later)
|
|
depends=(
|
|
alsa-topology-conf
|
|
alsa-ucm-conf
|
|
glibc
|
|
)
|
|
provides=(
|
|
libasound.so
|
|
libatopology.so
|
|
)
|
|
install=$pkgname.install
|
|
source=(
|
|
$url/files/pub/lib/$pkgname-$pkgver.tar.bz2{,.sig}
|
|
)
|
|
sha512sums=('b0c0666e38e881dca985b61386523c045c71072a88be4952c986ffbe2107ec736da528858ebeffdf439de5c290914bf3facc654100a228c6d26fff9429142ef0'
|
|
'SKIP')
|
|
b2sums=('1723ca5f191525e050f05423fb9ccf4501e4f20490d01b0c068493bbce279d3a067e8d0e5f52f9c76c2eaecb4c2b3fc42690193b88c313461fce2aec390175b3'
|
|
'SKIP')
|
|
validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team (Package Signing Key v1) <release@alsa-project.org>
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
autoreconf -fiv
|
|
}
|
|
|
|
build() {
|
|
# -flto=auto is not supported: https://github.com/alsa-project/alsa-lib/issues/110
|
|
CFLAGS+=" -flto-partition=none"
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --without-debug
|
|
# prevent excessive overlinking due to libtool
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
check() {
|
|
export LD_LIBRARY_PATH="$pkgname-$pkgver/src/.libs/:$LD_LIBRARY_PATH"
|
|
make -k check -C $pkgname-$pkgver
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
|
|
install -vDm 644 $pkgname-$pkgver/{MEMORY-LEAK,TODO,NOTES,ChangeLog,doc/asoundrc.txt} -t "$pkgdir/usr/share/doc/$pkgname/"
|
|
}
|