buildroot/package/waf/waf.mk
Carlos Santos 10ded59ca5 package/waf: purge trailing '/' from WAF_SITE
<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>
2018-12-10 22:01:37 +01:00

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))