diff options
Diffstat (limited to 'package/zsh')
-rw-r--r-- | package/zsh/Config.in | 10 | ||||
-rw-r--r-- | package/zsh/zsh.mk | 14 |
2 files changed, 24 insertions, 0 deletions
diff --git a/package/zsh/Config.in b/package/zsh/Config.in new file mode 100644 index 0000000000..fd63aa9190 --- /dev/null +++ b/package/zsh/Config.in @@ -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/ diff --git a/package/zsh/zsh.mk b/package/zsh/zsh.mk new file mode 100644 index 0000000000..ca865a42c3 --- /dev/null +++ b/package/zsh/zsh.mk @@ -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)) |