[Buildroot] [git commit] zsh: new package

Peter Korsgaard peter at korsgaard.com
Wed Oct 2 20:43:39 UTC 2013


commit: http://git.buildroot.net/buildroot/commit/?id=3d19b7ef598f3534b46cf0746a81bc437579127c
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Phil Eichinger <phil at zankapfel.net>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/Config.in     |    1 +
 package/zsh/Config.in |   10 ++++++++++
 package/zsh/zsh.mk    |   14 ++++++++++++++
 3 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/package/Config.in b/package/Config.in
index 0ea814a..363113f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -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"
diff --git a/package/zsh/Config.in b/package/zsh/Config.in
new file mode 100644
index 0000000..fd63aa9
--- /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 0000000..ca865a4
--- /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))


More information about the buildroot mailing list