da304a832b
Add a patch to use pkg-config to find id3tag dependency (-lz) Fixes: - http://autobuild.buildroot.org/results/5e4882ddacf205a92a3ff1e79649cf16e4b6c0ae Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Arnout: add comment to AUTORECONF to refer to the patch] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
27 lines
975 B
Makefile
27 lines
975 B
Makefile
################################################################################
|
|
#
|
|
# madplay
|
|
#
|
|
################################################################################
|
|
|
|
MADPLAY_VERSION = 0.15.2b
|
|
MADPLAY_SITE = http://downloads.sourceforge.net/project/mad/madplay/$(MADPLAY_VERSION)
|
|
MADPLAY_LICENSE = GPL-2.0+
|
|
MADPLAY_LICENSE_FILES = COPYING COPYRIGHT
|
|
MADPLAY_DEPENDENCIES = host-pkgconf libmad libid3tag $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
# Force autoreconf to be able to use a more recent libtool script, that
|
|
# is able to properly behave in the face of a missing C++ compiler.
|
|
# Also 0003-configure-ac-use-pkg-config-to-find-id3tag.patch
|
|
MADPLAY_AUTORECONF = YES
|
|
|
|
# Check if ALSA is built, then we should configure after alsa-lib so
|
|
# ./configure can find alsa-lib.
|
|
ifeq ($(BR2_PACKAGE_MADPLAY_ALSA),y)
|
|
MADPLAY_CONF_OPTS += --with-alsa
|
|
MADPLAY_DEPENDENCIES += alsa-lib
|
|
MADPLAY_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs alsa`"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|