diff options
author | Dhaby Xiloj <dhabyx@gmail.com> | 2016-07-24 00:10:36 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-07-24 15:06:41 +0700 |
commit | eae1ea20dd66267d491d47c3915c805b36e63ff0 (patch) | |
tree | 2fa7f28e988dedce6f99e5b0aed3839032a2980f /audio/mpd/mpd.SlackBuild | |
parent | 7fc9ec50724c9daa442e392812d6a54bd409f6e2 (diff) |
audio/mpd: Updated for version 0.19.17
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/mpd/mpd.SlackBuild')
-rw-r--r-- | audio/mpd/mpd.SlackBuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/audio/mpd/mpd.SlackBuild b/audio/mpd/mpd.SlackBuild index f7a05dcad4892..ae32b91de565e 100644 --- a/audio/mpd/mpd.SlackBuild +++ b/audio/mpd/mpd.SlackBuild @@ -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} @@ -58,6 +58,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" else @@ -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 |