300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS 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>
27 lines
669 B
Makefile
27 lines
669 B
Makefile
#############################################################
|
|
#
|
|
# dialog
|
|
#
|
|
#############################################################
|
|
DIALOG_VERSION:=1.1-20100428
|
|
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 $(call AUTOTARGETS))
|