mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 21:33:39 -09:00
Doxygen source archive download fails with a HTTP 404 Not Found error. The doxygen download page [1] mention that older versions can be downloaded on SourceForge at [2]. This commit fixes the issue by changing _SITE to this new URL. Fixes: https://autobuild.buildroot.org/results/253450bf374ce858fe12712059c435fc773d52f8 [1] https://www.doxygen.nl/download.html [2] https://sourceforge.net/projects/doxygen/files/ Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
563 B
Makefile
18 lines
563 B
Makefile
################################################################################
|
|
#
|
|
# doxygen
|
|
#
|
|
################################################################################
|
|
|
|
DOXYGEN_VERSION = 1.8.18
|
|
DOXYGEN_SOURCE = doxygen-$(DOXYGEN_VERSION).src.tar.gz
|
|
DOXYGEN_SITE = https://sourceforge.net/projects/doxygen/files/rel-$(DOXYGEN_VERSION)
|
|
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))
|