mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
ea8ce66c37
Update to the latest release of tbtools. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
744 B
Makefile
26 lines
744 B
Makefile
################################################################################
|
|
#
|
|
# tbtools
|
|
#
|
|
################################################################################
|
|
|
|
TBTOOLS_VERSION = 0.4.2
|
|
TBTOOLS_SITE = $(call github,intel,tbtools,v$(TBTOOLS_VERSION))
|
|
TBTOOLS_LICENSE = MIT
|
|
TBTOOLS_LICENSE_FILES = LICENSE
|
|
TBTOOLS_DEPENDENCIES = udev
|
|
|
|
define TBTOOLS_INSTALL_SCRIPTS
|
|
$(MAKE) -C $(@D) PREFIX=$(TARGET_DIR)/usr install-scripts
|
|
endef
|
|
TBTOOLS_POST_INSTALL_TARGET_HOOKS += TBTOOLS_INSTALL_SCRIPTS
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
|
|
define TBTOOLS_INSTALL_COMPLETION
|
|
$(MAKE) -C $(@D) PREFIX=$(TARGET_DIR)/usr install-completion
|
|
endef
|
|
TBTOOLS_POST_INSTALL_TARGET_HOOKS += TBTOOLS_INSTALL_COMPLETION
|
|
endif
|
|
|
|
$(eval $(cargo-package))
|