7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
907 B
Makefile
30 lines
907 B
Makefile
################################################################################
|
|
#
|
|
# doxygen
|
|
#
|
|
################################################################################
|
|
|
|
DOXYGEN_VERSION = 1.8.9.1
|
|
DOXYGEN_SOURCE = doxygen-$(DOXYGEN_VERSION).src.tar.gz
|
|
DOXYGEN_SITE = http://ftp.stack.nl/pub/users/dimitri
|
|
DOXYGEN_LICENSE = GPLv2
|
|
DOXYGEN_LICENSE_FILES = LICENSE
|
|
DOXYGEN_DEPENDENCIES = host-flex host-bison
|
|
|
|
define HOST_DOXYGEN_CONFIGURE_CMDS
|
|
(cd $(@D); $(HOST_MAKE_ENV) ./configure --shared --prefix=$(HOST_DIR)/usr)
|
|
endef
|
|
|
|
define HOST_DOXYGEN_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HOST_DOXYGEN_INSTALL_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
endef
|
|
|
|
# Doxygen's configure is a handwritten script, not an autotools-generated one.
|
|
# It doesn't accept host-autotools-package default arguments, so we have to
|
|
# call host-generic-package here.
|
|
$(eval $(host-generic-package))
|