From 4978db60656a4cf399f54d5be04a4a6e620d5af0 Mon Sep 17 00:00:00 2001 From: Ted Hess Date: Fri, 18 Jul 2014 16:03:56 -0400 Subject: [PATCH] Import zile from oldpackages, update copyright, pkg info Signed-off-by: Ted Hess --- utils/zile/Makefile | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 utils/zile/Makefile diff --git a/utils/zile/Makefile b/utils/zile/Makefile new file mode 100644 index 0000000000..72c7f271ac --- /dev/null +++ b/utils/zile/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2006-2014 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:=zile +PKG_VERSION:=2.3.24 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@GNU/zile +PKG_MD5SUM:=fe77d801ba69e0fb9b4914a04b9ff506 +PKG_MAINTAINER:=Ted Hess + +PKG_LICENSE:=GPL-3.0+ +PKG_LICENSE_FILE:=COPYING + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/zile + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libncursesw + TITLE:=very small emacs-like editor + URL:=http://www.gnu.org/software/zile/ + SUBMENU:=Editors +endef + +define Package/zile/description + Zile is a small Emacs clone. Zile is a customizable, self-documenting + real-time display editor. Zile was written to be as similar as possible + to Emacs; every Emacs user should feel at home with Zile. +endef + +CONFIGURE_VARS += \ + gl_cv_func_getopt_gnu=yes + +define Package/zile/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,zile))