Date: Tuesday, October 25, 2022 @ 08:56:01
Author: dvzrv
Revision: 1334722
archrelease: copy trunk to multilib-testing-x86_64
Added:
lib32-alsa-lib/repos/multilib-testing-x86_64/
lib32-alsa-lib/repos/multilib-testing-x86_64/PKGBUILD
(from rev 1334721, lib32-alsa-lib/trunk/PKGBUILD)
lib32-alsa-lib/repos/multilib-testing-x86_64/keys/
----------+
PKGBUILD | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
Copied: lib32-alsa-lib/repos/multilib-testing-x86_64/PKGBUILD (from rev
1334721, lib32-alsa-lib/trunk/PKGBUILD)
===================================================================
--- multilib-testing-x86_64/PKGBUILD (rev 0)
+++ multilib-testing-x86_64/PKGBUILD 2022-10-25 08:56:01 UTC (rev 1334722)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge <[email protected]>
+# Contributor: Jan Alexander Steffens (heftig) <[email protected]>
+
+_name=alsa-lib
+pkgname=lib32-alsa-lib
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="An alternative implementation of Linux sound support (32 bit)"
+arch=(x86_64)
+url="https://www.alsa-project.org"
+license=(LGPL2.1)
+depends=(lib32-glibc "alsa-lib=$pkgver")
+provides=(libasound.so libatopology.so)
+options=(debug)
+source=(https://www.alsa-project.org/files/pub/lib/$_name-$pkgver.tar.bz2{,.sig})
+sha512sums=('865ff05a8f589996f8d63d43a91c961f1b64144f3e1d17c7074b7ac16f25b3fd1c371d46ed63a8cc20fa01e63c76b75f1a9802b56889ae1073854dd050d27688'
+ 'SKIP')
+b2sums=('e6171ac557db6265e3f02df7bd269eca62d09afaf2c04dc913d3bb217df23a8e66e808ad453fea5ed90d4d9226feb05065ad5d9b3575241b76675ccd27b9b4d4'
+ 'SKIP')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team
(Package Signing Key v1) <[email protected]>
+
+prepare() {
+ cd $_name-$pkgver
+ autoreconf -fiv
+}
+
+build() {
+ # -flto=auto is not supported:
https://github.com/alsa-project/alsa-lib/issues/110
+ CFLAGS+=" -flto-partition=none"
+
+ export CC='gcc -m32'
+ export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
+
+ cd $_name-$pkgver
+ ./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib32 \
+ --without-debug \
+ --disable-python
+ # prevent excessive overlinking due to libtool
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+}
+
+check() {
+ export LD_LIBRARY_PATH="${PWD}/src/.libs/:${LD_LIBRARY_PATH}"
+ make -k check -C $_name-$pkgver
+}
+
+package() {
+ make DESTDIR="$pkgdir" install -C $_name-$pkgver
+ rm -r "$pkgdir"/usr/{bin,include,share}
+}