e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
435 B
Makefile
20 lines
435 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 $(autotools-package))
|