2009-08-10 23:33:08 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2009 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
|
2009-10-04 10:58:57 +00:00
|
|
|
PKG_VERSION:=2.3.12
|
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
|
2009-10-04 10:58:57 +00:00
|
|
|
PKG_MD5SUM:=041fcfd738a75e37b324ecd89186ebb1
|
2007-07-04 20:06:51 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/zile
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=very small emacs-like editor
|
|
|
|
URL:=http://zile.sourceforge.net
|
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
|
|
|
|
|
2007-07-04 20:06:51 +00:00
|
|
|
define Package/zile/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-08-10 23:33:08 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
|
2007-07-04 20:06:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,zile))
|