[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_HOST_DOXYGEN
bool "host doxygen"
depends on BR2_HOST_GCC_AT_LEAST_4_9 # C++14
help
Doxygen is the de facto standard tool for generating
documentation from annotated C++ sources, but it also
supports other popular programming languages such as C,
Objective-C, C#, PHP, Java, Python, IDL (Corba, Microsoft,
and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some
extent D.
http://www.doxygen.nl/

View File

@ -0,0 +1,3 @@
# Computed locally
sha256 18173d9edc46d2d116c1f92a95d683ec76b6b4b45b817ac4f245bb1073d00656 doxygen-1.8.18.src.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE

View File

@ -0,0 +1,17 @@
################################################################################
#
# doxygen
#
################################################################################
DOXYGEN_VERSION = 1.8.18
DOXYGEN_SOURCE = doxygen-$(DOXYGEN_VERSION).src.tar.gz
DOXYGEN_SITE = http://doxygen.nl/files
DOXYGEN_LICENSE = GPL-2.0
DOXYGEN_LICENSE_FILES = LICENSE
DOXYGEN_CPE_ID_VENDOR = doxygen
HOST_DOXYGEN_DEPENDENCIES = host-flex host-bison
HOST_DOXYGEN_CONF_OPTS += -DBUILD_SHARED_LIBS=OFF
$(eval $(host-cmake-package))