audio/mpd: Updated for version 0.19.17

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Dhaby Xiloj 2016-07-24 00:10:36 -06:00 committed by Willy Sudiarto Raharjo
parent 7fc9ec5072
commit eae1ea20dd
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
3 changed files with 20 additions and 11 deletions

View File

@ -1,15 +1,16 @@
Music Player Daemon (MPD) allows remote access for playing music (MP3,
Ogg Vorbis, FLAC, AAC, Mod, and wave files) and managing playlists.
MPD is designed for integrating a computer into a stereo system that
provides control for music playback over a local network. It also makes
a great desktop music player, especially if you are a console junkie,
Music Player Daemon (MPD) allows remote access for playing music (MP3,
Ogg Vorbis, FLAC, AAC, Mod, and wave files) and managing playlists.
MPD is designed for integrating a computer into a stereo system that
provides control for music playback over a local network. It also makes
a great desktop music player, especially if you are a console junkie,
like frontend options, or restart X often.
Some optional dependencies, detected automatically: libshout, libmms,
libmpdclient, musepack-tools, lame, faac, faad2, ffmpeg, fluidsynth,
libmpdclient, musepack-tools, lame, faac, faad2, fluidsynth,
twolame, avahi and jack.
You can enable this optional features:
FFMPEG=yes|no (default: no), requires ffmpeg
ISO9660=yes|no (default: no), enable iso9660 archive support
SOUNDCLOUD=yes|no (default: no), enable support for soundcloud.com
RECORDEROUTPUT=yes|no (default:no), enables the recorder file output plugin

View File

@ -24,7 +24,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=mpd
VERSION=${VERSION:-0.19.10}
VERSION=${VERSION:-0.19.17}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -57,6 +57,13 @@ fi
set -e
# flac support
if [ "${FFMPEG:-no}" != "no" ]; then
ffmpeg="enable"
else
ffmpeg="disable"
fi
# flac support
if [ "${FLAC:-no}" != "no" ]; then
flac="enable"
@ -130,6 +137,8 @@ LDFLAGS="-L/usr/lib${LIBDIRSUFFIX} -lnsl" \
--mandir=/usr/man \
--enable-documentation \
--enable-database \
--enable-pulse \
--${ffmpeg}-ffmpeg \
--${flac}-flac \
--${id3}-id3 \
--${iso9660}-iso9660 \
@ -141,7 +150,6 @@ LDFLAGS="-L/usr/lib${LIBDIRSUFFIX} -lnsl" \
--disable-dependency-tracking \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--build=$ARCH-slackware-linux
make
make install DESTDIR=$PKG

View File

@ -1,8 +1,8 @@
PRGNAM="mpd"
VERSION="0.19.10"
VERSION="0.19.17"
HOMEPAGE="http://www.musicpd.org/"
DOWNLOAD="http://www.musicpd.org/download/mpd/0.19/mpd-0.19.10.tar.xz"
MD5SUM="da4bc3e47afd0faf9e7a67168e012102"
DOWNLOAD="http://www.musicpd.org/download/mpd/0.19/mpd-0.19.17.tar.xz"
MD5SUM="47e13f3f160bf94e7a897c5a48990f3d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""