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>
28 lines
674 B
Makefile
28 lines
674 B
Makefile
#############################################################
|
|
#
|
|
# dialog
|
|
#
|
|
#############################################################
|
|
|
|
DIALOG_VERSION = 1.1-20111020
|
|
DIALOG_SOURCE = dialog-$(DIALOG_VERSION).tgz
|
|
DIALOG_SITE = ftp://invisible-island.net/dialog
|
|
DIALOG_CONF_OPT = --with-ncurses
|
|
DIALOG_CONF_ENV = ac_cv_path_NCURSES_CONFIG=true LIBS=-lncurses
|
|
DIALOG_DEPENDENCIES = ncurses
|
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
DIALOG_DEPENDENCIES+=libiconv
|
|
endif
|
|
|
|
define DIALOG_INSTALL_TARGET_CMDS
|
|
install -c $(@D)/dialog $(TARGET_DIR)/usr/bin/dialog
|
|
endef
|
|
|
|
define DIALOG_POST_CLEAN
|
|
-$(MAKE) -C $(@D) clean
|
|
rm -f $(TARGET_DIR)/usr/bin/dialog
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|