mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-22 12:23:27 +08:00
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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
0eafafbe3d
commit
6ea3c8bd4d
@ -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
package/multimedia/python-mad/Config.in
Normal file
9
package/multimedia/python-mad/Config.in
Normal file
@ -0,0 +1,9 @@
|
||||
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
package/multimedia/python-mad/python-mad.mk
Normal file
41
package/multimedia/python-mad/python-mad.mk
Normal file
@ -0,0 +1,41 @@
|
||||
#############################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user