update buildroot to 2017.02.11
This commit is contained in:
24
bsp/buildroot-2017.02.11/package/nano/Config.in
Normal file
24
bsp/buildroot-2017.02.11/package/nano/Config.in
Normal file
@@ -0,0 +1,24 @@
|
||||
config BR2_PACKAGE_NANO
|
||||
bool "nano"
|
||||
depends on BR2_USE_WCHAR
|
||||
# full version uses fork()
|
||||
select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
A nice ncurses-based editor. Started out as a clone of pico.
|
||||
Great editor for new users.
|
||||
|
||||
http://www.nano-editor.org/
|
||||
|
||||
if BR2_PACKAGE_NANO
|
||||
|
||||
config BR2_PACKAGE_NANO_TINY
|
||||
bool "optimize for size"
|
||||
default y
|
||||
help
|
||||
Disable all features for the sake of size.
|
||||
|
||||
endif
|
||||
|
||||
comment "nano needs a toolchain w/ wchar"
|
||||
depends on !BR2_USE_WCHAR
|
||||
2
bsp/buildroot-2017.02.11/package/nano/nano.hash
Normal file
2
bsp/buildroot-2017.02.11/package/nano/nano.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 752170643039e2c95a433de357f0c70a8c4c4c561a90a7e7259a63e225b659b9 nano-2.7.4.tar.xz
|
||||
38
bsp/buildroot-2017.02.11/package/nano/nano.mk
Normal file
38
bsp/buildroot-2017.02.11/package/nano/nano.mk
Normal file
@@ -0,0 +1,38 @@
|
||||
################################################################################
|
||||
#
|
||||
# nano
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NANO_VERSION_MAJOR = 2.7
|
||||
NANO_VERSION = $(NANO_VERSION_MAJOR).4
|
||||
NANO_SITE = https://www.nano-editor.org/dist/v$(NANO_VERSION_MAJOR)
|
||||
NANO_SOURCE = nano-$(NANO_VERSION).tar.xz
|
||||
NANO_LICENSE = GPLv3+
|
||||
NANO_LICENSE_FILES = COPYING
|
||||
NANO_CONF_OPTS = \
|
||||
--without-slang \
|
||||
--with-wordbounds
|
||||
NANO_DEPENDENCIES = ncurses
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
||||
NANO_CONF_ENV += ac_cv_prog_NCURSESW_CONFIG=$(STAGING_DIR)/usr/bin/$(NCURSES_CONFIG_SCRIPTS)
|
||||
else
|
||||
NANO_CONF_ENV += ac_cv_prog_NCURSESW_CONFIG=false
|
||||
NANO_MAKE_ENV += CURSES_LIB="-lncurses"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FILE),y)
|
||||
NANO_DEPENDENCIES += file
|
||||
else
|
||||
NANO_CONF_ENV += ac_cv_lib_magic_magic_open=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NANO_TINY),y)
|
||||
NANO_CONF_OPTS += --enable-tiny
|
||||
define NANO_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 $(@D)/src/nano $(TARGET_DIR)/usr/bin/nano
|
||||
endef
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user