zsh: new package
Signed-off-by: Phil Eichinger <phil@zankapfel.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
bb33517511
commit
3d19b7ef59
@ -923,6 +923,7 @@ source "package/at/Config.in"
|
|||||||
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||||
source "package/bash/Config.in"
|
source "package/bash/Config.in"
|
||||||
source "package/dash/Config.in"
|
source "package/dash/Config.in"
|
||||||
|
source "package/zsh/Config.in"
|
||||||
endif
|
endif
|
||||||
source "package/dialog/Config.in"
|
source "package/dialog/Config.in"
|
||||||
source "package/dtach/Config.in"
|
source "package/dtach/Config.in"
|
||||||
|
10
package/zsh/Config.in
Normal file
10
package/zsh/Config.in
Normal 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
14
package/zsh/zsh.mk
Normal 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))
|
Loading…
Reference in New Issue
Block a user