c47bdff2e000c8daabee317ba7e6b0f06e397760
[openwrt/svn-archive/archive.git] / utils / zile / Makefile
1 #
2 # Copyright (C) 2006-2009 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.14
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/zile
16 PKG_MD5SUM:=88322abbb8146f3c4e7bb31fa4d351c6
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://www.gnu.org/software/zile/
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 CONFIGURE_VARS += \
36 gl_cv_func_getopt_gnu=yes \
37
38 define Package/zile/install
39 $(INSTALL_DIR) $(1)/usr/bin
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
41 endef
42
43 $(eval $(call BuildPackage,zile))