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

David Runge dvzrv at gemini.archlinux.org
Sat Jul 9 10:11:10 UTC 2022


    Date: Saturday, July 9, 2022 @ 10:11:09
  Author: dvzrv
Revision: 1249082

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 1249081, 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 1249081, lib32-alsa-lib/trunk/PKGBUILD)
===================================================================
--- multilib-testing-x86_64/PKGBUILD	                        (rev 0)
+++ multilib-testing-x86_64/PKGBUILD	2022-07-09 10:11:09 UTC (rev 1249082)
@@ -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.2
+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=('79e5920384e570a1acd8ecd1eb8812879333c3cedb1d15780080afc40125b97df893c33f4163d9dd863871b628bc6026265f8ace2c8634fc1af5b52b62ac9cfe'
+            'SKIP')
+b2sums=('9ae3d4358d802970249e1b904faa7c4d646dec1d8c93e0de9c4b70065e912b910303d77e8f9f68c97b883ec270cf0dd8b97146b4a85f3aede4f290683c462fce'
+        '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