summaryrefslogtreecommitdiff
path: root/packages/bash/bash_3.2.bb
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2006-11-27 20:30:14 +0000
committerMatthias Hentges <oe@hentges.net>2006-11-27 20:30:14 +0000
commit5f971c9d11baf069a4e7443be8eec89dcd40a1d9 (patch)
tree1709613ea32c040632697bf2f6651fd0bc1b71a3 /packages/bash/bash_3.2.bb
parent98c24fd9863bbcd80db9c43602d0e72d901e810e (diff)
parent28fa247ca598fad3ce28eeb342b529ee990221ff (diff)
merge of '0f87f8be24df03c0a122d734a9d28e61cdacd4b4'
and '9bac02feed3274bd39118581192521e56ce97898'
Diffstat (limited to 'packages/bash/bash_3.2.bb')
-rw-r--r--packages/bash/bash_3.2.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/bash/bash_3.2.bb b/packages/bash/bash_3.2.bb
new file mode 100644
index 0000000000..e3d6b0560c
--- /dev/null
+++ b/packages/bash/bash_3.2.bb
@@ -0,0 +1,28 @@
+DESCRIPTION = "An sh-compatible command language interpreter."
+HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html"
+DEPENDS = "ncurses"
+SECTION = "base/shell"
+LICENSE = "GPL"
+
+SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \
+ file://001-005.patch;patch=1"
+
+inherit autotools gettext
+
+PARALLEL_MAKE = ""
+
+bindir = "/bin"
+sbindir = "/sbin"
+
+EXTRA_OECONF = "--with-ncurses"
+export CC_FOR_BUILD = "${BUILD_CC}"
+
+do_configure () {
+ gnu-configize
+ oe_runconf
+}
+
+pkg_postinst () {
+ grep -q "bin/bash" ${sysconfdir}/shells || echo /bin/bash >> ${sysconfdir}/shells
+ grep -q "bin/sh" ${sysconfdir}/shells || echo /bin/sh >> ${sysconfdir}/shells
+}