b426e34dbc
less-444 was released on 9 Jun 2011. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
434 B
Makefile
20 lines
434 B
Makefile
#############################################################
|
|
#
|
|
# less
|
|
#
|
|
#############################################################
|
|
|
|
LESS_VERSION = 444
|
|
LESS_SITE = http://www.greenwoodsoftware.com/less
|
|
LESS_DEPENDENCIES = ncurses
|
|
|
|
define LESS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/less $(TARGET_DIR)/usr/bin/less
|
|
endef
|
|
|
|
define LESS_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/less
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS))
|