dialog.mk 673 B

123456789101112131415161718192021222324252627
  1. #############################################################
  2. #
  3. # dialog
  4. #
  5. #############################################################
  6. DIALOG_VERSION = 1.1-20111020
  7. DIALOG_SOURCE = dialog-$(DIALOG_VERSION).tgz
  8. DIALOG_SITE = ftp://invisible-island.net/dialog
  9. DIALOG_CONF_OPT = --with-ncurses
  10. DIALOG_CONF_ENV = ac_cv_path_NCURSES_CONFIG=true LIBS=-lncurses
  11. DIALOG_DEPENDENCIES = ncurses
  12. ifneq ($(BR2_ENABLE_LOCALE),y)
  13. DIALOG_DEPENDENCIES+=libiconv
  14. endif
  15. define DIALOG_INSTALL_TARGET_CMDS
  16. install -c $(@D)/dialog $(TARGET_DIR)/usr/bin/dialog
  17. endef
  18. define DIALOG_POST_CLEAN
  19. -$(MAKE) -C $(@D) clean
  20. rm -f $(TARGET_DIR)/usr/bin/dialog
  21. endef
  22. $(eval $(call AUTOTARGETS))