Commit 6ea3c8bd authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

python-mad: new package



python-mad is a Python binding for the MAD library, a high-quality
integer-only MPEG decoder.

This package has been introduced as a test to make sure that
third-party Python modules that rely on a C extension can properly be
built against the Python infrastructure of Buildroot.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 0eafafbe
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ source "package/multimedia/mpd/Config.in"
source "package/multimedia/mpg123/Config.in"
source "package/multimedia/mplayer/Config.in"
source "package/multimedia/musepack/Config.in"
source "package/multimedia/python-mad/Config.in"
source "package/multimedia/speex/Config.in"
source "package/multimedia/swfdec/Config.in"
source "package/multimedia/festival/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_MAD
	bool "python-mad"
	depends on BR2_PACKAGE_PYTHON
	select BR2_PACKAGE_LIBMAD
	help
	  python-mad is a Python binding for the MAD library, a
	  high-quality integer-only MPEG decoder.

	  http://spacepants.org/src/pymad/
+41 −0
Original line number Diff line number Diff line
#############################################################
#
# python-mad
#
#############################################################

PYTHON_MAD_VERSION = 0.6
PYTHON_MAD_SOURCE  = pymad-$(PYTHON_MAD_VERSION).tar.gz
PYTHON_MAD_SITE    = http://spacepants.org/src/pymad/download/

PYTHON_MAD_DEPENDENCIES = python libmad

ifeq ($(BR2_ENDIAN),"LITTLE")
PYTHON_MAD_ENDIAN=little
else
PYTHON_MAD_ENDIAN=big
endif

define PYTHON_MAD_CONFIGURE_CMDS
	echo "endian = $(PYTHON_MAD_ENDIAN)" > $(@D)/Setup
	echo "mad_libs = mad" >> $(@D)/Setup
	echo "mad_lib_dir = $(STAGING_DIR)/usr/lib" >> $(@D)/Setup
	echo "mad_include_dir = $(STAGING_DIR)/usr/include" >> $(@D)/Setup
endef

define PYTHON_MAD_BUILD_CMDS
	(cd $(@D); \
		CC="$(TARGET_CC)"		\
		CFLAGS="$(TARGET_CFLAGS)" 	\
		LDSHARED="$(TARGET_CC) -shared" \
		LDFLAGS="$(TARGET_LDFLAGS)" 	\
	$(HOST_DIR)/usr/bin/python setup.py build_ext \
	--include-dirs=$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR))
	(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build)
endef

define PYTHON_MAD_INSTALL_TARGET_CMDS
	(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr)
endef

$(eval $(call GENTARGETS,package,python-mad))