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.

56 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:=4.2
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNU/nano
  13. PKG_HASH:=1143defce62e391b241252ffdb6e5c1ded56cfe26d46ee81b796abe0ccc45df9
  14. PKG_LICENSE:=GPL-3.0+
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Jonathan Bennett <JBennett@incomsystems.biz>, Hannu Nyman <hannu.nyman@iki.fi>
  17. PKG_INSTALL:=1
  18. PKG_BUILD_PARALLEL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/nano
  21. SUBMENU:=Editors
  22. SECTION:=utils
  23. CATEGORY:=Utilities
  24. TITLE:=An enhanced clone of the Pico text editor
  25. URL:=https://www.nano-editor.org/
  26. DEPENDS:=+libncurses
  27. endef
  28. define Package/nano/description
  29. Nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone
  30. of the Pico text editor.
  31. endef
  32. CONFIGURE_ARGS += \
  33. --enable-tiny \
  34. --disable-utf8 \
  35. --without-slang \
  36. --disable-color \
  37. CONFIGURE_VARS += \
  38. ac_cv_header_regex_h=no \
  39. define Package/nano/install
  40. $(INSTALL_DIR) $(1)/usr/bin
  41. $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
  42. endef
  43. $(eval $(call BuildPackage,nano))