0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-10-08 12:46:55 +00:00
Files
termux-packages/packages/alsa-lib/build.sh
Termux Github Actions 50c5372881 bump(main/alsa-lib): 1.2.14
This commit has been automatically submitted by Github Actions.
2025-04-14 18:08:43 +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.14"
TERMUX_PKG_SRCURL="https://github.com/alsa-project/alsa-lib/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=a7bc6c09f0e5a622ebc8afb63a194aa1396145b5c6433d3445363201d96c23c4
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
}