aeb95110401da1dd2fb74c05f88f7bbbf8c62131
[openwrt/svn-archive/archive.git] / utils / zile / Makefile
1 #
2 # Copyright (C) 2006-2010 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.3.19
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/zile
16 PKG_MD5SUM:=c23096fc646bc4a906c24c1bbe4e29f6
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/zile
23 SECTION:=utils
24 CATEGORY:=Utilities
25 DEPENDS:=+libncurses
26 TITLE:=very small emacs-like editor
27 URL:=http://www.gnu.org/software/zile/
28 SUBMENU:=Editors
29 endef
30
31 define Package/zile/description
32 Zile is a small Emacs clone. Zile is a customizable, self-documenting
33 real-time display editor. Zile was written to be as similar as possible
34 to Emacs; every Emacs user should feel at home with Zile.
35 endef
36
37 CONFIGURE_VARS += \
38 gl_cv_func_getopt_gnu=yes \
39
40 define Package/zile/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,zile))