zsh: new package

Signed-off-by: Phil Eichinger <phil@zankapfel.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Phil Eichinger 2013-10-01 11:59:31 +02:00 committed by Peter Korsgaard
parent bb33517511
commit 3d19b7ef59
3 changed files with 25 additions and 0 deletions

View File

@ -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"

10
package/zsh/Config.in Normal file
View File

@ -0,0 +1,10 @@
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/

14
package/zsh/zsh.mk Normal file
View File

@ -0,0 +1,14 @@
################################################################################
#
# 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))