[arch-commits] Commit in lib32-alsa-lib/repos (2 files)

David Runge dvzrv at gemini.archlinux.org
Fri Jun 17 16:49:44 UTC 2022


    Date: Friday, June 17, 2022 @ 16:49:43
  Author: dvzrv
Revision: 1238316

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-alsa-lib/repos/multilib-staging-x86_64/
  lib32-alsa-lib/repos/multilib-staging-x86_64/PKGBUILD
    (from rev 1238315, lib32-alsa-lib/trunk/PKGBUILD)

----------+
 PKGBUILD |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

Copied: lib32-alsa-lib/repos/multilib-staging-x86_64/PKGBUILD (from rev 1238315, lib32-alsa-lib/trunk/PKGBUILD)
===================================================================
--- multilib-staging-x86_64/PKGBUILD	                        (rev 0)
+++ multilib-staging-x86_64/PKGBUILD	2022-06-17 16:49:43 UTC (rev 1238316)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+
+_name=alsa-lib
+pkgname=lib32-alsa-lib
+pkgver=1.2.7.1
+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=('2a0b4205e8bf602b56a6f5007ba219799e5443827393058e439adf5b391bb6c4815a48bb994b5d108b9f31a90db0eb43a96a0d7741216e2d710dc63d372de27e'
+            'SKIP')
+b2sums=('b7be12a51453a82d0eb2e57fb8f9391c8778e8c63b78b6e6f46437bca39e3efb13394ba0e060547781ccde75fcdc19da532d5aed24fe0d5cfb885c1604e4e8ce'
+        'SKIP')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team (Package Signing Key v1) <release at alsa-project.org>
+
+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}
+}



More information about the arch-commits mailing list