64 lines
2.5 KiB
Bash
64 lines
2.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.musicpd.org
|
|
TERMUX_PKG_DESCRIPTION="Music player daemon"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_VERSION=0.21.5
|
|
TERMUX_PKG_SHA256=90e557c887639425629d20e7404030d4dcea938ec8c2ea648a8d80c6b14b3d30
|
|
TERMUX_PKG_SRCURL=https://github.com/MusicPlayerDaemon/MPD/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_DEPENDS="libcurl, libid3tag, libopus, libpulseaudio, libmpdclient, openal-soft, libvorbis, libsqlite, ffmpeg, libmp3lame, libbz2, libogg"
|
|
TERMUX_PKG_BUILD_DEPENDS="boost"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-Dalsa=disabled
|
|
-Dao=disabled
|
|
-Depoll=false
|
|
-Dexpat=disabled
|
|
-Diconv=disabled
|
|
-Dicu=disabled
|
|
-Dmad=disabled
|
|
-Dpcre=disabled
|
|
-Dsndio=disabled
|
|
"
|
|
TERMUX_PKG_CONFFILES="$TERMUX_PREFIX/etc/mpd.conf"
|
|
|
|
termux_step_pre_configure() {
|
|
CXXFLAGS+=" -DTERMUX -UANDROID"
|
|
LDFLAGS+=" -llog -lOpenSLES"
|
|
rm -f $TERMUX_PREFIX/etc/mpd.conf
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
cp -f $TERMUX_PKG_SRCDIR/doc/mpdconf.example $TERMUX_PREFIX/etc/mpd.conf
|
|
|
|
# Try to work around OpenSL ES library clashes:
|
|
# Linking against libOpenSLES causes indirect linkage against
|
|
# libskia.so, which links against the platform libjpeg.so and
|
|
# libpng.so, which are not compatible with the Termux ones.
|
|
#
|
|
# On Android N also liblzma seems to conflict.
|
|
mkdir -p $TERMUX_PREFIX/libexec
|
|
mkdir -p $TERMUX_PREFIX/var/mpd
|
|
mv $TERMUX_PREFIX/bin/mpd $TERMUX_PREFIX/libexec
|
|
local SYSTEM_LIBFOLDER=lib64
|
|
if [ $TERMUX_ARCH_BITS = 32 ]; then SYSTEM_LIBFOLDER=lib; fi
|
|
|
|
echo "#!/bin/sh" > $TERMUX_PREFIX/bin/mpd
|
|
cat $TERMUX_SCRIPTDIR/packages/mpd/mpd-script.sh >> $TERMUX_PREFIX/bin/mpd
|
|
# Work around issues on devices having ffmpeg libraries
|
|
# in a system vendor dir, reported by live_the_dream on #termux:
|
|
local FFMPEG_LIBS="" lib
|
|
# c++_shared needs to go first in every c++ app that uses audio directly.
|
|
for lib in c++_shared curl ssl opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do
|
|
if [ -n "$FFMPEG_LIBS" ]; then FFMPEG_LIBS+=":"; fi
|
|
FFMPEG_LIBS+="$TERMUX_PREFIX/lib/lib${lib}.so"
|
|
done
|
|
echo "export LD_PRELOAD=$FFMPEG_LIBS" >> $TERMUX_PREFIX/bin/mpd
|
|
chmod +x $TERMUX_PREFIX/bin/mpd
|
|
# /system/vendor/lib(64) needed for libqc-opt.so on
|
|
# a xperia z5 c, reported by BrainDamage on #termux:
|
|
echo "LD_LIBRARY_PATH=/system/$SYSTEM_LIBFOLDER:/system/vendor/$SYSTEM_LIBFOLDER:$TERMUX_PREFIX/lib exec $TERMUX_PREFIX/libexec/mpd \"\$@\"" >> $TERMUX_PREFIX/bin/mpd
|
|
}
|
|
|
|
termux_step_create_debscripts() {
|
|
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
|
|
echo 'mkdir -p $HOME/.mpd/playlists' >> postinst
|
|
}
|