mpc: update to 0.35
[feed/packages.git] / utils / zile / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=zile
9 PKG_VERSION:=2.3.24
10 PKG_RELEASE:=6
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=@GNU/zile
14 PKG_HASH:=218bb2af414c6a168101656631a5b2da92f20a965895e1006658cc658b0b7e89
15 PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
16
17 PKG_LICENSE:=GPL-3.0-or-later
18 PKG_LICENSE_FILES:=COPYING
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/zile
25 SECTION:=utils
26 CATEGORY:=Utilities
27 DEPENDS:=+libncursesw
28 TITLE:=very small emacs-like editor
29 URL:=http://www.gnu.org/software/zile/
30 SUBMENU:=Editors
31 endef
32
33 define Package/zile/description
34 Zile is a small Emacs clone. Zile is a customizable, self-documenting
35 real-time display editor. Zile was written to be as similar as possible
36 to Emacs; every Emacs user should feel at home with Zile.
37 endef
38
39 CONFIGURE_VARS += \
40 gl_cv_func_getopt_gnu=yes \
41 gl_cv_warn__Wmudflap=no \
42 gl_cv_warn__fmudflap=no
43
44 CONFIGURE_ARGS += \
45 --with-ncursesw \
46
47
48 define Package/zile/install
49 $(INSTALL_DIR) $(1)/usr/bin
50 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
51 endef
52
53 $(eval $(call BuildPackage,zile))