dialog.mk 552 B

123456789101112131415161718192021
  1. #############################################################
  2. #
  3. # dialog
  4. #
  5. #############################################################
  6. DIALOG_VERSION:=1.1-20100428
  7. DIALOG_SOURCE:=dialog-$(DIALOG_VERSION).tgz
  8. DIALOG_SITE:=ftp://invisible-island.net/dialog
  9. DIALOG_CONF_OPT = --with-ncurses
  10. DIALOG_DEPENDENCIES = ncurses
  11. define DIALOG_INSTALL_TARGET_CMDS
  12. install -c $(@D)/dialog $(TARGET_DIR)/usr/bin/dialog
  13. endef
  14. define DIALOG_POST_CLEAN
  15. -$(MAKE) -C $(@D) clean
  16. rm -f $(TARGET_DIR)/usr/bin/dialog
  17. endef
  18. $(eval $(call AUTOTARGETS,package,dialog))