Commit 4f2367f4 authored by Thierry Bultel's avatar Thierry Bultel Committed by Thomas Petazzoni
Browse files

mpd-mpc: new package



[Thomas:
 - Changed hash file to use SHA256
 - Remove libiconv handling, since the iconv detection in mpc is
   broken: if it's not available in the C library, it expects to find
   iconv() in libintl (from gettext). But it's actually libiconv that
   provides iconv() for non-locale capable uClibc toolchains. But
   since anyway the package builds fine without iconv() support and
   properly detects when it's available, don't bother with this.]

Signed-off-by: default avatarThierry Bultel <tbultel@free.fr>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 81cbf0bf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ menu "Audio and video applications"
	source "package/madplay/Config.in"
	source "package/modplugtools/Config.in"
	source "package/mpd/Config.in"
	source "package/mpd-mpc/Config.in"
	source "package/mpg123/Config.in"
	source "package/mplayer/Config.in"
	source "package/musepack/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MPD_MPC
	bool "mpd-mpc"
	select BR2_PACKAGE_LIBMPDCLIENT
	help
	  A minimalist command line interface to MPD.

	  http://www.musicpd.org/clients/mpc/
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256 20735f7173cce56bec50c1d8b4633751052dc68365b29a6113206dc1cdc6e242 mpc-0.26.tar.xz
+16 −0
Original line number Diff line number Diff line
################################################################################
#
# mpd-mpc
#
################################################################################

MPD_MPC_VERSION_MAJOR = 0
MPD_MPC_VERSION = $(MPD_MPC_VERSION_MAJOR).26
MPD_MPC_SITE = http://www.musicpd.org/download/mpc/$(MPD_MPC_VERSION_MAJOR)
MPD_MPC_SOURCE = mpc-$(MPD_MPC_VERSION).tar.xz
MPD_MPC_LICENSE = GPLv2+
MPD_MPC_LICENSE_FILES = COPYING
MPD_MPC_DEPENDENCIES = host-pkgconf libmpdclient
MPD_MPC_CONF_ENV = ac_cv_prog_cc_c99='-std=c99'

$(eval $(autotools-package))