You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2007-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=nano
  9. PKG_VERSION:=5.6
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNU/nano
  13. PKG_HASH:=fce183e4a7034d07d219c79aa2f579005d1fd49f156db6e50f53543a87637a32
  14. PKG_LICENSE:=GPL-3.0-or-later
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Jonathan Bennett <JBennett@incomsystems.biz>, Hannu Nyman <hannu.nyman@iki.fi>
  17. PKG_CPE_ID:=cpe:/a:gnu:nano
  18. PKG_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/nano
  22. SUBMENU:=Editors
  23. SECTION:=utils
  24. CATEGORY:=Utilities
  25. TITLE:=An enhanced clone of the Pico text editor
  26. URL:=https://www.nano-editor.org/
  27. DEPENDS:=+libncurses
  28. endef
  29. define Package/nano/description
  30. Nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone
  31. of the Pico text editor.
  32. endef
  33. CONFIGURE_ARGS += \
  34. --enable-tiny \
  35. --disable-utf8 \
  36. --without-slang \
  37. --disable-color \
  38. CONFIGURE_VARS += \
  39. ac_cv_header_regex_h=no \
  40. define Package/nano/install
  41. $(INSTALL_DIR) $(1)/usr/bin
  42. $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
  43. endef
  44. $(eval $(call BuildPackage,nano))