27fafa94a7
cpe:2.3🅰️google:depot-tools added by commit
48730a1a9d
has never been a valid CPE ID
for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe:2.3🅰️google:depot-tools
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
708 B
Makefile
25 lines
708 B
Makefile
################################################################################
|
|
#
|
|
# depot-tools
|
|
#
|
|
################################################################################
|
|
|
|
DEPOT_TOOLS_VERSION = 8d14454ba4a35fd9d2483842b08815a2357ec86f
|
|
DEPOT_TOOLS_SITE = https://chromium.googlesource.com/chromium/tools/depot_tools
|
|
DEPOT_TOOLS_SITE_METHOD = git
|
|
DEPOT_TOOLS_LICENSE = BSD-3-Clause
|
|
DEPOT_TOOLS_LICENSE_FILES = LICENSE
|
|
|
|
HOST_DEPOT_TOOLS_DEPENDENCIES = \
|
|
host-python3 \
|
|
host-python-httplib2 \
|
|
host-python-pyparsing \
|
|
host-python-six
|
|
|
|
define HOST_DEPOT_TOOLS_INSTALL_CMDS
|
|
mkdir -p $(HOST_DIR)/share/depot_tools
|
|
cp -dprf $(@D)/* $(HOST_DIR)/share/depot_tools/
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|