From bdffaca6d04164a2ca0ee83f9e9531a6a9cd25b8 Mon Sep 17 00:00:00 2001 From: olli Date: Wed, 4 Jul 2007 20:06:51 +0000 Subject: [PATCH] Add zile (#2028) git-svn-id: svn://svn.openwrt.org/openwrt/packages@7878 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/zile/Makefile | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 utils/zile/Makefile diff --git a/utils/zile/Makefile b/utils/zile/Makefile new file mode 100644 index 000000000..c7b476dad --- /dev/null +++ b/utils/zile/Makefile @@ -0,0 +1,45 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=zile +PKG_VERSION:=2.2.37 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/zile +PKG_MD5SUM:=041e047ff293739166c9d17174645200 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/zile + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libncurses + TITLE:=very small emacs-like editor + 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. + URL:=http://zile.sourceforge.net +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR)/src \ + all +endef + +define Package/zile/install + $(INSTALL_DIR) $(1)/usr/bin + $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,zile))