Files
termux-pacman-bot 8f03cef71b bump(main/alsa-lib): 1.2.15.3
This commit has been automatically submitted by Github Actions.
2026-01-13 12:48:35 +00:00

26 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://www.alsa-project.org
TERMUX_PKG_DESCRIPTION="The Advanced Linux Sound Architecture (ALSA) - library"
TERMUX_PKG_LICENSE="LGPL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.2.15.3"
TERMUX_PKG_SRCURL="https://github.com/alsa-project/alsa-lib/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=7a3bee640f1c29fdfa3d1f922185929b546f012c27a73bbb6b424d12488c3c8e
TERMUX_PKG_DEPENDS="libandroid-sysv-semaphore, libandroid-shmem"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_TAG_TYPE="newest-tag"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
--disable-static
--with-versioned=no
--with-tmpdir=$TERMUX_PREFIX/tmp
"
termux_step_pre_configure() {
# pcm interface uses sysv semaphore which is broken on Android 14+ (issue #20514)
# Nonetheless, it is still enabled because:
# 1. probably never called because Android has no /dev/snd/pcm* device
# 2. still required for other packages in compile time, e.g. pipewire-alsa
# -landroid-shmem is for depending packages in compile time
LDFLAGS+=" -landroid-sysv-semaphore -landroid-shmem"
autoreconf -fi
}