0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
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 $(call GENTARGETS))
|