2012-05-14 10:33:33 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# python-id3
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
PYTHON_ID3_VERSION = 1.2
|
|
|
|
PYTHON_ID3_SOURCE = id3-py_$(PYTHON_ID3_VERSION).tar.gz
|
2012-08-26 01:52:48 +02:00
|
|
|
PYTHON_ID3_SITE = http://downloads.sourceforge.net/project/id3-py/id3-py/$(PYTHON_ID3_VERSION)
|
2012-05-14 10:33:33 +02:00
|
|
|
|
|
|
|
PYTHON_ID3_DEPENDENCIES = python
|
|
|
|
|
|
|
|
define PYTHON_ID3_BUILD_CMDS
|
|
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define PYTHON_ID3_INSTALL_TARGET_CMDS
|
|
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr)
|
|
|
|
endef
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|