blob: cc95998772a8f5c5261dca3fcd35c4822e3e131d [file] [log] [blame]
Brad Bishopf32f3c82015-11-09 14:43:12 -05001SUMMARY = "Fast and simple WSGI-framework for small web-applications."
2DESCRIPTION = "Bottle is a fast and simple micro-framework for small web \
3applications. It offers request dispatching (Routes) with url parameter \
4support, templates, a built-in HTTP Server and adapters for many third \
5party WSGI/HTTP-server and template engines - all in a single file and \
6with no dependencies other than the Python Standard Library."
7HOMEPAGE = "http://bottlepy.org/"
8SECTION = "devel/python"
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=94b9b2cc7e46ccea87e00af8970826b5"
11
12inherit allarch
13inherit setuptools
14
Brad Bishop4f833492015-11-13 09:08:41 -050015S = "${WORKDIR}/${SRCNAME}-${PV}"
Brad Bishop86605732015-11-18 10:56:38 -050016RDEPENDS_${PN} += "python-email-utils"
Brad Bishop4f833492015-11-13 09:08:41 -050017
18PROVIDES += "${PN}-app"
19PACKAGES += "${PN}-app"
20
21SUMMARY_${PN}-app = "${SRCNAME} app"
22RDEPENDS_${PN}-app = "${PN}"
23FILES_${PN}-app = "${bindir}/bottle.py"
Brad Bishopf32f3c82015-11-09 14:43:12 -050024
25BBCLASSEXTEND = "nativesdk"