1config BR2_PACKAGE_PYTHON_MAKO 2 bool "python-mako" 3 select BR2_PACKAGE_PYTHON_MARKUPSAFE # runtime 4 help 5 Mako is a template library written in Python. It provides a 6 familiar, non-XML syntax which compiles into Python modules 7 for maximum performance. 8 9 https://pypi.python.org/pypi/Mako 10 11if BR2_PACKAGE_PYTHON_MAKO 12 13config BR2_PACKAGE_PYTHON_MAKO_EXT_PYGMENTPLUGIN 14 bool "mako extension pygmentplugin" 15 select BR2_PACKAGE_PYTHON_PYGMENTS # runtime 16 help 17 Provide python-pygments support for 18 mako.ext.pygmentplugin 19 20config BR2_PACKAGE_PYTHON_MAKO_EXT_BABELPLUGIN 21 bool "mako extension babelplugin" 22 select BR2_PACKAGE_PYTHON_BABEL # runtime 23 help 24 Provide python-babel support for 25 mako.ext.babelplugin 26 27endif 28