mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
63ad875f83
These are necessary to redirect audio output from programs using ALSA to the pulseaudio daemon.
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.alsa-project.org
|
|
TERMUX_PKG_DESCRIPTION="The Advanced Linux Sound Architecture (ALSA) - plugins"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.2.12"
|
|
TERMUX_PKG_SRCURL="https://github.com/alsa-project/alsa-plugins/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
|
|
TERMUX_PKG_SHA256=55fccb55e6e195d73e93924b327f66d371001175c5bff70fdfd90bc026d496ba
|
|
TERMUX_PKG_DEPENDS="libandroid-sysv-semaphore, libandroid-shmem, alsa-lib, pulseaudio"
|
|
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
|
|
--disable-oss
|
|
--disable-arcamav
|
|
"
|
|
|
|
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
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
cp ${TERMUX_PKG_BUILDER_DIR}/99-pulseaudio-default.conf ${TERMUX_PREFIX}/etc/alsa/conf.d/99-pulseaudio-default.conf
|
|
}
|