[package] update lsof to 4.81 (#4846)
[openwrt/svn-archive/archive.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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=zile
12 PKG_VERSION:=2.2.59
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@GNU/zile
17 PKG_MD5SUM:=ff7e448e230de8eebb6b0a675b73a0fe
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/zile
22 SECTION:=utils
23 CATEGORY:=Utilities
24 DEPENDS:=+libncurses
25 TITLE:=very small emacs-like editor
26 URL:=http://zile.sourceforge.net
27 SUBMENU:=Editors
28 endef
29
30 define Package/zile/description
31 Zile is a small Emacs clone. Zile is a customizable, self-documenting
32 real-time display editor. Zile was written to be as similar as possible
33 to Emacs; every Emacs user should feel at home with Zile.
34 endef
35
36 define Build/Compile
37 $(MAKE) -C $(PKG_BUILD_DIR)/src
38 endef
39
40 define Package/zile/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,zile))