diff options
author | Matt Reimer <mattjreimer@gmail.com> | 2006-11-27 21:35:56 +0000 |
---|---|---|
committer | Matt Reimer <mattjreimer@gmail.com> | 2006-11-27 21:35:56 +0000 |
commit | 313c82e3bd14e15219a0ce799e3862d64405f25b (patch) | |
tree | 0bce60622a014bc7c974aaeacae8848827951c23 /packages/bash/bash_3.2.bb | |
parent | 9d82a24d4c13533fe0ae8a026bc846e6077e94e6 (diff) | |
parent | c8c52fc4c7b82f5e4de799d3f37292e8daec6705 (diff) |
merge of '2b33aa7e14fb73dac68d3c76e023f7c50ddf272b'
and '8fd787cd0451416efde2b7d17050c5337130fe3c'
Diffstat (limited to 'packages/bash/bash_3.2.bb')
-rw-r--r-- | packages/bash/bash_3.2.bb | 28 |
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 +} |