diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-11 21:26:37 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-15 13:34:02 +0100 |
commit | 1a60e061622cc4d772ff61f33a3ff1927a3b190c (patch) | |
tree | 6ed5e2b50ba2c7a41f3585bf3378bdc5e92f1aa1 /package/python-bottle | |
parent | a6bba674a257f291c51a3859381f653e711bd354 (diff) |
python-bottle: convert to the Python package infrastructure
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python-bottle')
-rw-r--r-- | package/python-bottle/python-bottle.mk | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/package/python-bottle/python-bottle.mk b/package/python-bottle/python-bottle.mk index db71512ec..58c51f95c 100644 --- a/package/python-bottle/python-bottle.mk +++ b/package/python-bottle/python-bottle.mk @@ -7,16 +7,8 @@ PYTHON_BOTTLE_VERSION = 0.11.6 PYTHON_BOTTLE_SOURCE = bottle-$(PYTHON_BOTTLE_VERSION).tar.gz PYTHON_BOTTLE_SITE = http://pypi.python.org/packages/source/b/bottle -PYTHON_BOTTLE_DEPENDENCIES = python PYTHON_BOTTLE_LICENSE = MIT # README.rst refers to the file "LICENSE" but it's not included +PYTHON_BOTTLE_SETUP_TYPE = distutils -define PYTHON_BOTTLE_BUILD_CMDS - (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build --executable=/usr/bin/python) -endef - -define PYTHON_BOTTLE_INSTALL_TARGET_CMDS - (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr) -endef - -$(eval $(generic-package)) +$(eval $(python-package)) |