2009-08-10 23:33:08 +00:00
|
|
|
#
|
2011-03-10 09:10:49 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2007-07-04 20:06:51 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=zile
|
2011-05-18 14:37:03 +00:00
|
|
|
PKG_VERSION:=2.3.24
|
2007-07-04 20:06:51 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2008-07-05 10:18:41 +00:00
|
|
|
PKG_SOURCE_URL:=@GNU/zile
|
2011-05-18 14:37:03 +00:00
|
|
|
PKG_MD5SUM:=fe77d801ba69e0fb9b4914a04b9ff506
|
2010-03-06 11:21:30 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2007-07-04 20:06:51 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/zile
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2012-06-12 23:47:48 +00:00
|
|
|
DEPENDS:=+libncursesw
|
2007-07-04 20:06:51 +00:00
|
|
|
TITLE:=very small emacs-like editor
|
2009-12-05 01:06:32 +00:00
|
|
|
URL:=http://www.gnu.org/software/zile/
|
2008-04-13 12:06:07 +00:00
|
|
|
SUBMENU:=Editors
|
2007-07-04 20:06:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/zile/description
|
2008-07-05 10:18:41 +00:00
|
|
|
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
|
2007-10-14 04:32:56 +00:00
|
|
|
to Emacs; every Emacs user should feel at home with Zile.
|
|
|
|
endef
|
|
|
|
|
2009-12-23 20:33:58 +00:00
|
|
|
CONFIGURE_VARS += \
|
2011-05-18 14:37:03 +00:00
|
|
|
gl_cv_func_getopt_gnu=yes
|
2009-12-23 20:33:58 +00:00
|
|
|
|
2007-07-04 20:06:51 +00:00
|
|
|
define Package/zile/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2010-03-06 11:21:30 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
2007-07-04 20:06:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,zile))
|