e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
941 B
Makefile
40 lines
941 B
Makefile
#############################################################
|
|
#
|
|
# gdisk
|
|
#
|
|
#############################################################
|
|
|
|
GDISK_VERSION = 0.6.14
|
|
GDISK_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/gptfdisk
|
|
GDISK_SOURCE = gdisk-$(GDISK_VERSION).tgz
|
|
|
|
GDISK_TARGETS_$(BR2_PACKAGE_GDISK_GDISK) += gdisk
|
|
GDISK_TARGETS_$(BR2_PACKAGE_GDISK_SGDISK) += sgdisk
|
|
|
|
ifneq ($(GDISK_TARGETS_y),)
|
|
|
|
GDISK_DEPENDENCIES += util-linux
|
|
ifeq ($(BR2_PACKAGE_GDISK_SGDISK),y)
|
|
GDISK_DEPENDENCIES += popt
|
|
endif
|
|
|
|
|
|
define GDISK_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" \
|
|
-C $(@D) $(GDISK_TARGETS_y)
|
|
endef
|
|
|
|
define GDISK_INSTALL_TARGET_CMDS
|
|
for i in $(GDISK_TARGETS_y); do \
|
|
$(INSTALL) -D $(@D)/$$i $(TARGET_DIR)/usr/sbin/; \
|
|
done
|
|
endef
|
|
|
|
define GDISK_UNINSTALL_TARGET_CMDS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/sbin/,$(GDISK_TARGETS_y))
|
|
endef
|
|
|
|
endif
|
|
|
|
$(eval $(generic-package))
|