mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
This contains some minor bugfixes and enhancements, see the release notes https://gitlab.com/ita1024/waf/blob/waf-2.1.9/ChangeLog Signed-off-by: Titouan Christophe <titouan.christophe@mind.be> Signed-off-by: Julien Olivain <ju.o@free.fr>
22 lines
531 B
Makefile
22 lines
531 B
Makefile
################################################################################
|
|
#
|
|
# waf
|
|
#
|
|
################################################################################
|
|
|
|
WAF_VERSION = 2.1.9
|
|
WAF_SOURCE = waf-$(WAF_VERSION)
|
|
WAF_SITE = https://waf.io
|
|
WAF_LICENSE = BSD-3-Clause
|
|
WAF_LICENSE_FILES = waf
|
|
|
|
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))
|