X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fmpd;h=0e57a28465217fc467815e1401c1beaaedbea4ef;hb=2f6c9d93a3242fd648383c191ccb8d02271e89f7;hp=3c9dff8a6ca142732a564ca1b50651f4a1082b64;hpb=0de3eea43d421bd9e2f9fbf090e16a89d673f141;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/mpd b/lfs/mpd index 3c9dff8a6c..0e57a28465 100644 --- a/lfs/mpd +++ b/lfs/mpd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2009 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2017 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,17 +24,17 @@ include Config -VER = 0.14.2 +VER = 0.19.19 THISAPP = mpd-$(VER) -DL_FILE = $(THISAPP).tar.bz2 +DL_FILE = $(THISAPP).tar.xz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/${THISAPP} TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpd -PAK_VER = 6 +PAK_VER = 18 -DEPS = "alsa ffmpeg libshout libogg libmad libid3tag libvorbis" +DEPS = "alsa faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus" ############################################################################### # Top-level Rules @@ -44,7 +44,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 66817a4b4c05454e6488f6b821f2a6a3 +$(DL_FILE)_MD5 = 6e4fca9a9c26dad08b61bac9a91802db install : $(TARGET) @@ -76,12 +76,28 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure --prefix=/usr --disable-ipv6 + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --disable-ipv6 \ + --sysconfdir=/etc \ + --disable-sqlite \ + --disable-smbclient \ + --enable-id3 \ + --enable-vorbis \ + --enable-expat \ + --enable-ffmpeg \ + --enable-flac \ + --enable-lame-encoder \ + --enable-upnp \ + --disable-icu cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install + + #install initscripts + $(call INSTALL_INITSCRIPT,mpd) + @rm -rf $(DIR_APP) touch /var/log/mpd.error.log touch /var/log/mpd.log - sed -i 's/MPD_VERSION/$(VER)/' /var/ipfire/mpfire/db/mpd.db @$(POSTBUILD)