You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

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