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>
26 lines
584 B
Makefile
26 lines
584 B
Makefile
#############################################################
|
|
#
|
|
# nano
|
|
#
|
|
#############################################################
|
|
|
|
NANO_VERSION = 2.3.1
|
|
NANO_SITE = http://www.nano-editor.org/dist/v2.3
|
|
NANO_MAKE_ENV = CURSES_LIB="-lncurses"
|
|
NANO_CONF_OPT = --without-slang
|
|
NANO_DEPENDENCIES = ncurses
|
|
|
|
ifeq ($(BR2_PACKAGE_NANO_TINY),y)
|
|
NANO_CONF_OPT += --enable-tiny
|
|
endif
|
|
|
|
define NANO_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/src/nano $(TARGET_DIR)/usr/bin/nano
|
|
endef
|
|
|
|
define NANO_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/nano
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|