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