blob: 230044e1a253794096e6f4ffcdb9766a7e983b09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require python-mako.inc
inherit setuptools
RDEPENDS_${PN} = "python-threading \
python-netclient \
python-html \
"
RDEPENDS_${PN}_class-native = ""
BBCLASSEXTEND = "native nativesdk"
# The same utility is packaged in python3-mako, so it would conflict
do_install_append() {
rm -f ${D}${bindir}/mako-render
rmdir ${D}${bindir}
}
|