1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-18 05:13:56 +02:00
openwrt-packages/utils/nano/Makefile
Hannu Nyman af86b17064 nano: update to 3.1
* Update nano editor to 3.1
* Apply a post-release upstream patch to fix compilation

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2018-09-23 18:42:29 +03:00

57 lines
1.2 KiB
Makefile

#
# Copyright (C) 2007-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=nano
PKG_VERSION:=3.1
PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0+
PKG_LICENSE_FILES:=COPYING
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@GNU/nano
PKG_HASH:=14c02ca40a5bc61c580ce2f9cb7f9fc72d5ccc9da17ad044f78f6fb3fdb7719e
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/nano
SUBMENU:=Editors
SECTION:=utils
CATEGORY:=Utilities
TITLE:=An enhanced clone of the Pico text editor
URL:=http://www.nano-editor.org/
MAINTAINER:=Jonathan Bennett <JBennett@incomsystems.biz>, \
Hannu Nyman <hannu.nyman@iki.fi>
DEPENDS:=+libncurses
endef
define Package/nano/description
Nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone
of the Pico text editor.
endef
CONFIGURE_ARGS += \
--enable-tiny \
--disable-utf8 \
--without-slang \
--disable-color \
CONFIGURE_VARS += \
ac_cv_header_regex_h=no \
define Package/nano/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
endef
$(eval $(call BuildPackage,nano))