diff options
Diffstat (limited to 'meta-oe/recipes-devtools/doxygen/doxygen_1.14.0.bb')
-rw-r--r-- | meta-oe/recipes-devtools/doxygen/doxygen_1.14.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/doxygen/doxygen_1.14.0.bb b/meta-oe/recipes-devtools/doxygen/doxygen_1.14.0.bb new file mode 100644 index 0000000000..512a63549e --- /dev/null +++ b/meta-oe/recipes-devtools/doxygen/doxygen_1.14.0.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | DESCRIPTION = "Doxygen is the de facto standard tool for generating documentation from annotated C++ sources." | ||
2 | HOMEPAGE = "http://www.doxygen.org/" | ||
3 | |||
4 | LICENSE = "GPL-2.0-only" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
6 | |||
7 | DEPENDS = "bison-native flex-native" | ||
8 | |||
9 | SRC_URI = "\ | ||
10 | git://github.com/doxygen/doxygen.git;branch=master;protocol=https \ | ||
11 | " | ||
12 | |||
13 | SRCREV = "cbe58f6237b2238c9af7f51c6b7afb8bbf52c866" | ||
14 | |||
15 | |||
16 | UPSTREAM_CHECK_GITTAGREGEX = "Release_(?P<pver>\d+(\_\d+)+)" | ||
17 | |||
18 | inherit cmake python3native | ||
19 | |||
20 | EXTRA_OECMAKE += "\ | ||
21 | -DFLEX_TARGET_ARG_COMPILE_FLAGS='--noline' \ | ||
22 | -DBISON_TARGET_ARG_COMPILE_FLAGS='--no-lines' \ | ||
23 | " | ||
24 | |||
25 | BBCLASSEXTEND = "native nativesdk" | ||