commit 8ac6732
chld
·
2026-08-22 23:37:01 +0000 UTC
parent bd9e9fa
alsa-libs: bump to 1.2.16
3 files changed,
+3,
-4
+1,
-1
1@@ -2,5 +2,5 @@ name: alsa-lib
2 description: a library to interface with ALSA in the linux kernel and virtual devices using a plugin system
3 license: LGPLv2.1
4 upstream: https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.13.tar.bz2
5-version: 1.2.13
6+version: 1.2.16
7 maintainer:
+1,
-1
1@@ -1,6 +1,6 @@
2 #!/bin/sh -ue
3 NAME=alsa-lib
4-VERSION=1.2.13
5+VERSION=1.2.16
6 RELEASE=1
7 SOURCE="https://www.alsa-project.org/files/pub/lib/alsa-lib-${VERSION}.tar.bz2"
8 BUILD_STYLE=configure
+1,
-2
1@@ -18,10 +18,9 @@ build() {
2 --with-curses=ncursesw \
3 --disable-libtool-lock \
4 --disable-alsatplg \
5- --enable-shared=no \
6 --disable-shared \
7 --enable-static || die "configure failed"
8- gmake PREFIX="$PREFIX" CC="$static_cc" CFLAGS='-static' LDFLAGS='-static' -j"$NPROC" || die "make failed"
9+ gmake PREFIX="$PREFIX" CC="$static_cc" CFLAGS='-static' LDFLAGS='-static -all-static' -j"$NPROC" || die "make failed"
10 gmake PREFIX="$PREFIX" DESTDIR="$PKG" install || die "make install failed"
11 }
12