mpd: Update from 0.20.10 to 0.20.11
[termux-packages] / packages / mpd / build.sh
index 6c50cbc..64f58b0 100644 (file)
@@ -1,10 +1,9 @@
 TERMUX_PKG_HOMEPAGE="https://www.musicpd.org"
 TERMUX_PKG_DESCRIPTION="music player daemon"
-TERMUX_PKG_VERSION=0.20.6
+TERMUX_PKG_VERSION=0.20.11
+TERMUX_PKG_SHA256=2eed3627490fd883bfd79982de612fd2ef35f6ecf9e991e8b2bee68a7134658b
 TERMUX_PKG_SRCURL=https://github.com/MusicPlayerDaemon/MPD/archive/v$TERMUX_PKG_VERSION.tar.gz
-TERMUX_PKG_FOLDERNAME=MPD-$TERMUX_PKG_VERSION
-TERMUX_PKG_SHA256=42729305dbafb912bb9197698822b112aa78ab691f87433e37c511ce91ce0a0d
-TERMUX_PKG_DEPENDS="libcurl, libid3tag, libopus, libevent, fftw, libpulseaudio, libmpdclient, boost, openal-soft, libvorbis, libsqlite, ffmpeg"
+TERMUX_PKG_DEPENDS="libcurl, libid3tag, libopus, libevent, fftw, libpulseaudio, libmpdclient, boost, openal-soft, libvorbis, libsqlite, ffmpeg, libmp3lame, libbz2"
 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
 --disable-alsa
 --disable-ao
@@ -46,8 +45,8 @@ termux_step_make_install () {
        # Work around issues on devices having ffmpeg libraries
        # in a system vendor dir, reported by live_the_dream on #termux:
        local FFMPEG_LIBS="" lib
-       # gnustl_shared needs to go first in every c++ app that uses audio directly.
-       for lib in gnustl_shared curl ssl event opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do
+       # c++_shared needs to go first in every c++ app that uses audio directly.
+       for lib in c++_shared curl ssl event 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
@@ -59,5 +58,6 @@ termux_step_make_install () {
 }
 
 termux_step_create_debscripts() {
+       echo "#!$TERMUX_PREFIX/bin/sh" > postinst
        echo 'mkdir -p $HOME/.mpd/playlists' >> postinst
 }