less.mk 434 B

12345678910111213141516171819
  1. #############################################################
  2. #
  3. # less
  4. #
  5. #############################################################
  6. LESS_VERSION = 444
  7. LESS_SITE = http://www.greenwoodsoftware.com/less
  8. LESS_DEPENDENCIES = ncurses
  9. define LESS_INSTALL_TARGET_CMDS
  10. $(INSTALL) -m 0755 $(@D)/less $(TARGET_DIR)/usr/bin/less
  11. endef
  12. define LESS_UNINSTALL_TARGET_CMDS
  13. rm -f $(TARGET_DIR)/usr/bin/less
  14. endef
  15. $(eval $(call AUTOTARGETS))