Commit bf898045 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

madplay package

parent 8298b7d0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -242,6 +242,7 @@ source "package/asterisk/Config.in"
source "package/libid3tag/Config.in"
source "package/libmad/Config.in"
source "package/libsndfile/Config.in"
source "package/madplay/Config.in"
source "package/mpg123/Config.in"
endif

+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MADPLAY
	bool "madplay"
	default n
	select BR2_PACKAGE_LIBMAD
	select BR2_PACKAGE_LIBID3TAG
	help
	  MAD is a high-quality fixed-point MPEG audio decoder with
	  24-bit output. The implementation is entirely new, based on
	  the ISO/IEC standards, and performs especially well on systems
	  without native floating-point support.

	  http://www.underbit.com/products/mad/
+60 −0
Original line number Diff line number Diff line
#############################################################
#
# madplay
#
#############################################################

MADPLAY_VERSION=0.15.2b
MADPLAY_SOURCE=madplay-$(MADPLAY_VERSION).tar.gz
MADPLAY_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mad
MADPLAY_DIR=$(BUILD_DIR)/madplay-$(MADPLAY_VERSION)
MADPLAY_CAT:=$(ZCAT)

$(DL_DIR)/$(MADPLAY_SOURCE):
	$(WGET) -P $(DL_DIR) $(MADPLAY_SITE)/$(MADPLAY_SOURCE)

$(MADPLAY_DIR)/.unpacked: $(DL_DIR)/$(MADPLAY_SOURCE)
	$(MADPLAY_CAT) $(DL_DIR)/$(MADPLAY_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(MADPLAY_DIR)/.unpacked

$(MADPLAY_DIR)/.configured: $(MADPLAY_DIR)/.unpacked
	(cd $(MADPLAY_DIR); rm -rf config.cache; \
		$(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(TARGET_CFLAGS)" \
		LDFLAGS="$(TARGET_LDFLAGS)" \
		./configure \
		--target=$(GNU_TARGET_NAME) \
		--host=$(GNU_TARGET_NAME) \
		--build=$(GNU_HOST_NAME) \
		--prefix=/usr \
		--sysconfdir=/etc \
		$(DISABLE_NLS) \
	);
	touch $(MADPLAY_DIR)/.configured

$(MADPLAY_DIR)/src/madplay: $(MADPLAY_DIR)/.configured
	$(MAKE) CC=$(TARGET_CC) -C $(MADPLAY_DIR)

$(MADPLAY_DIR)/.installed: $(MADPLAY_DIR)/src/madplay
	$(MAKE) -C $(MADPLAY_DIR) DESTDIR=$(TARGET_DIR) install
	touch $(MADPLAY_DIR)/.installed

madplay: uclibc libmad $(MADPLAY_DIR)/.installed

madplay-source: $(DL_DIR)/$(MADPLAY_SOURCE)

madplay-clean:
	@if [ -d $(MADPLAY_DIR)/Makefile ] ; then \
		$(MAKE) -C $(MADPLAY_DIR) clean ; \
	fi;

madplay-dirclean:
	rm -rf $(MADPLAY_DIR)
#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(strip $(BR2_PACKAGE_MADPLAY)),y)
TARGETS+=madplay
endif