mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
10ded59ca5
<PKG>_SITE cannot have a trailing slash. This was not detected by the check in generic-package because it is a host-only package without Config.in symbol. Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
20 lines
480 B
Makefile
20 lines
480 B
Makefile
################################################################################
|
|
#
|
|
# waf
|
|
#
|
|
################################################################################
|
|
|
|
WAF_VERSION = 1.9.5
|
|
WAF_SOURCE = waf-$(WAF_VERSION)
|
|
WAF_SITE = https://waf.io
|
|
|
|
define HOST_WAF_EXTRACT_CMDS
|
|
$(INSTALL) -D -m 0755 $(HOST_WAF_DL_DIR)/waf-$(WAF_VERSION) $(@D)/waf
|
|
endef
|
|
|
|
define HOST_WAF_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/waf $(HOST_DIR)/bin/waf
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|