diff options
Diffstat (limited to 'meta/recipes-extended/bash/bash.inc')
| -rw-r--r-- | meta/recipes-extended/bash/bash.inc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc new file mode 100644 index 0000000000..42e89180d1 --- /dev/null +++ b/meta/recipes-extended/bash/bash.inc | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | DESCRIPTION = "An sh-compatible command language interpreter." | ||
| 2 | HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html" | ||
| 3 | SECTION = "base/shell" | ||
| 4 | |||
| 5 | # GPLv2+ (< 4.0), GPLv3+ (>= 4.0) | ||
| 6 | LICENSE = "GPLv3+" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 8 | DEPENDS = "ncurses" | ||
| 9 | |||
| 10 | inherit autotools gettext | ||
| 11 | |||
| 12 | PARALLEL_MAKE = "" | ||
| 13 | |||
| 14 | bindir = "/bin" | ||
| 15 | sbindir = "/sbin" | ||
| 16 | |||
| 17 | EXTRA_OECONF = "--with-ncurses" | ||
| 18 | export CC_FOR_BUILD = "${BUILD_CC}" | ||
| 19 | |||
| 20 | do_configure () { | ||
| 21 | gnu-configize | ||
| 22 | oe_runconf | ||
| 23 | } | ||
| 24 | |||
| 25 | pkg_postinst () { | ||
| 26 | touch $D${sysconfdir}/shells | ||
| 27 | grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells | ||
| 28 | grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells | ||
| 29 | } | ||
