zsh: Add recipe for 4.3.10 (latest upstream).
authorDavid-John Willis <John.Willis@Distant-earth.com>
Mon, 9 Nov 2009 07:51:58 +0000 (07:51 +0000)
committerKoen Kooi <koen@openembedded.org>
Fri, 4 Dec 2009 09:43:05 +0000 (10:43 +0100)
* Checksum was already in OE.

recipes/zsh/zsh_4.3.10.bb [new file with mode: 0644]

diff --git a/recipes/zsh/zsh_4.3.10.bb b/recipes/zsh/zsh_4.3.10.bb
new file mode 100644 (file)
index 0000000..3935e1f
--- /dev/null
@@ -0,0 +1,23 @@
+DESCRIPTION = "The Zsh shell"
+SECTION = "base/shell"
+PRIORITY = "optional"
+DEPENDS = "ncurses libpcre"
+PR = "r1"
+LICENSE = "zsh"
+
+SRC_URI = "http://www.zsh.org/pub/zsh-${PV}.tar.bz2 \
+"
+
+inherit autotools
+
+do_configure() { 
+   oe_runconf
+}
+
+EXTRA_OECONF = "--with-term-lib="ncurses" --with-tcsetpgrp"
+PARALLEL_MAKE = ""
+
+#Kill symlink
+do_install_append () {
+    mv ${D}${bindir}/zsh-${PV} ${D}${bindir}/zsh
+}