blob: dc14f1ce1cc3043d49b0ed965fc2972ba28cbf5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SUMMARY = "Sphinx Doxygen renderer"
DESCRIPTION = "Breathe is a Sphinx plugin providing beautifully integrated Doxygen output in your user-facing documentation."
HOMEPAGE = "https://www.breathe-doc.org/"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=9e49eecf36fc015de7c61a0247df75d6"
SRC_URI[sha256sum] = "14860b73118ac140b7a3f55446890c777d1b67149cb024279fe3710dad7f535c"
inherit pypi python_flit_core ptest
SRC_URI:append = " file://run-ptest"
RDEPENDS:${PN} = "python3-sphinx"
PYPI_PACKAGE = "breathe"
do_install_ptest() {
install -d ${D}${PTEST_PATH}/tests
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
}
BBCLASSEXTEND =+ "native"
|