python-meld3: new package

[thomas.petazzoni@free-electrons.com:
 Fixup indentation in the Config.in file.
 Add 'select BR2_PACKAGE_PYTHON_PYEXPAT' which is needed to get XML
 support in Python.
 Add license information.]

Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Jonathan Liu 2012-08-11 17:12:05 +10:00 committed by Thomas Petazzoni
parent 54fe81fbb4
commit 1ff74a535d
3 changed files with 31 additions and 0 deletions

View File

@ -271,6 +271,7 @@ menu "external python modules"
source "package/python-dpkt/Config.in"
source "package/python-id3/Config.in"
source "package/python-mad/Config.in"
source "package/python-meld3/Config.in"
source "package/python-netifaces/Config.in"
source "package/python-nfc/Config.in"
source "package/python-pygame/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_MELD3
bool "python-meld3"
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON_PYEXPAT
help
A HTML/XML templating system.
https://github.com/supervisor/meld3

View File

@ -0,0 +1,22 @@
#############################################################
#
# python-meld3
#
#############################################################
PYTHON_MELD3_VERSION = 0.6.8
PYTHON_MELD3_SOURCE = meld3-$(PYTHON_MELD3_VERSION).tar.gz
PYTHON_MELD3_SITE = http://pypi.python.org/packages/source/m/meld3/
PYTHON_MELD3_DEPENDENCIES = python
PYTHON_MELD3_LICENSE = ZPLv2.1
PYTHON_MELD3_LICENSE_FILES = COPYRIGHT.txt LICENSE.txt
define PYTHON_MELD3_BUILD_CMDS
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build)
endef
define PYTHON_MELD3_INSTALL_TARGET_CMDS
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr)
endef
$(eval $(generic-package))