summaryrefslogtreecommitdiff
path: root/meta/packages/bash/bash.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/bash/bash.inc')
-rw-r--r--meta/packages/bash/bash.inc26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta/packages/bash/bash.inc b/meta/packages/bash/bash.inc
deleted file mode 100644
index b67e8bbe3..000000000
--- a/meta/packages/bash/bash.inc
+++ /dev/null
@@ -1,26 +0,0 @@
-DESCRIPTION = "An sh-compatible command language interpreter."
-HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html"
-DEPENDS = "ncurses"
-SECTION = "base/shell"
-LICENSE = "GPL"
-
-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 () {
- touch $D${sysconfdir}/shells
- grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells
- grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells
-}