nuke $Id$ in /packages as well
[packages.git] / utils / zile / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=zile
11 PKG_VERSION:=2.2.59
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/zile
16 PKG_MD5SUM:=ff7e448e230de8eebb6b0a675b73a0fe
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/zile
21   SECTION:=utils
22   CATEGORY:=Utilities
23   DEPENDS:=+libncurses
24   TITLE:=very small emacs-like editor
25   URL:=http://zile.sourceforge.net
26   SUBMENU:=Editors
27 endef
28
29 define Package/zile/description
30         Zile is a small Emacs clone. Zile is a customizable, self-documenting
31         real-time display editor. Zile was written to be as similar as possible
32         to Emacs; every Emacs user should feel at home with Zile.
33 endef
34
35 define Build/Compile
36         $(MAKE) -C $(PKG_BUILD_DIR)/src
37 endef
38
39 define Package/zile/install
40         $(INSTALL_DIR) $(1)/usr/bin
41         $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
42 endef
43
44 $(eval $(call BuildPackage,zile))