Commit 3d19b7ef authored by Phil Eichinger's avatar Phil Eichinger Committed by Peter Korsgaard
Browse files

zsh: new package

parent bb335175
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -923,6 +923,7 @@ source "package/at/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/bash/Config.in"
source "package/dash/Config.in"
source "package/zsh/Config.in"
endif
source "package/dialog/Config.in"
source "package/dtach/Config.in"

package/zsh/Config.in

0 → 100644
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_ZSH
	bool "zsh"
	select BR2_PACKAGE_NCURSES
	help
	  zsh is a shell designed for interactive use, although it is also
	  a powerful scripting language. Many of the useful features of bash,
	  ksh, and tcsh were incorporated into zsh; many original features
	  were added.

	  http://zsh.sourceforge.net/

package/zsh/zsh.mk

0 → 100644
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# zsh
#
################################################################################

ZSH_VERSION=5.0.2
ZSH_SITE=http://downloads.sourceforge.net/project/zsh/zsh/$(ZSH_VERSION)
ZSH_LICENSE = MIT-like
ZSH_LICENSE_FILES = LICENCE

ZSH_DEPENDENCIES = ncurses

$(eval $(autotools-package))