Skip to content

Commit

Permalink
fix(main/mpd): add dependency on libwavpack
Browse files Browse the repository at this point in the history
In the bulk rebuild after ffmpeg update mpd took the opportunity to
link against one of the other updated packages, libwavpack, causing
error like `CANNOT LINK EXECUTABLE "mpd": library "libwavpack.so" not
found: needed by main executable` on device if libwavpack was not
manually installed.

Explicitly add dependency so that this does not happen again.
  • Loading branch information
termux-pacman-bot committed Dec 18, 2024
1 parent 2134f7d commit e04274f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mpd/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ TERMUX_PKG_DESCRIPTION="Music player daemon"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.23.16"
TERMUX_PKG_REVISION=1
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=https://github.com/MusicPlayerDaemon/MPD/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=a3ba8a4ef53c681ae5d415a79fbd1409d61cb3d03389a51595af24b330ecbb61
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="chromaprint, dbus, ffmpeg, game-music-emu, libao, libbz2, libc++, libcurl, libexpat, libflac, libicu, libid3tag, libmad, libmp3lame, libmpdclient, libnfs, libogg, libopenmpt, libopus, libsamplerate, libsndfile, libsoxr, libsqlite, libvorbis, mpg123, openal-soft, pcre2, pulseaudio, yajl, zlib, fmt"
TERMUX_PKG_DEPENDS="chromaprint, dbus, ffmpeg, game-music-emu, libao, libbz2, libc++, libcurl, libexpat, libflac, libicu, libid3tag, libmad, libmp3lame, libmpdclient, libnfs, libogg, libopenmpt, libopus, libsamplerate, libsndfile, libsoxr, libsqlite, libvorbis, libwavpack, mpg123, openal-soft, pcre2, pulseaudio, yajl, zlib, fmt"
TERMUX_PKG_BUILD_DEPENDS="boost, boost-headers, libiconv"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-Dalsa=disabled
Expand Down

0 comments on commit e04274f

Please sign in to comment.