summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-shells/dash/dash_0.5.11.2.bb
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2020-09-07 21:09:15 +0800
committerKhem Raj <raj.khem@gmail.com>2020-09-08 11:53:53 -0700
commite04060dea509a1d657c8f64638c04b69744f8caf (patch)
tree501a8438cf8af0c27dd73a5b1126643028d85ff2 /meta-oe/recipes-shells/dash/dash_0.5.11.2.bb
parent747161877824daae061bc4fb458f55ab033f62f4 (diff)
downloadmeta-openembedded-e04060dea509a1d657c8f64638c04b69744f8caf.tar.gz
dash: upgrade 0.5.11.1 -> 0.5.11.2
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-shells/dash/dash_0.5.11.2.bb')
-rw-r--r--meta-oe/recipes-shells/dash/dash_0.5.11.2.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-shells/dash/dash_0.5.11.2.bb b/meta-oe/recipes-shells/dash/dash_0.5.11.2.bb
new file mode 100644
index 0000000000..f59e6d1f7a
--- /dev/null
+++ b/meta-oe/recipes-shells/dash/dash_0.5.11.2.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] = "b9b71c72e40fdc4db9b4ffb81fc3bebc"
12SRC_URI[sha256sum] = "00fb7d68b7599cc41ab151051c06c01e9500540183d8aa72116cb9c742bd6d5f"
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}