summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-shells/dash/dash_0.5.11.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-shells/dash/dash_0.5.11.bb')
-rw-r--r--meta-oe/recipes-shells/dash/dash_0.5.11.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-shells/dash/dash_0.5.11.bb b/meta-oe/recipes-shells/dash/dash_0.5.11.bb
new file mode 100644
index 0000000000..b3a36651fc
--- /dev/null
+++ b/meta-oe/recipes-shells/dash/dash_0.5.11.bb
@@ -0,0 +1,27 @@
1SUMMARY = "Small and fast POSIX-compliant shell"
2HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/"
3SECTION = "System Environment/Shells"
4
5LICENSE = "BSD & GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e"
7
8inherit autotools update-alternatives
9
10SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz"
11SRC_URI[md5sum] = "027236e48b9202607b1418fee42c473e"
12SRC_URI[sha256sum] = "4dd9a6ed5fe7546095157918fe5d784bb0b7887ae13de50e1e2d11e1b5a391cb"
13
14EXTRA_OECONF += "--bindir=${base_bindir}"
15
16ALTERNATIVE_${PN} = "sh"
17ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh"
18ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash"
19ALTERNATIVE_PRIORITY = "10"
20
21pkg_postinst_${PN} () {
22 grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells
23}
24
25pkg_postrm_${PN} () {
26 printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
27}