diff options
| author | Zang Ruochen <zangrc.fnst@cn.fujitsu.com> | 2020-09-07 21:09:15 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-09-08 11:53:53 -0700 |
| commit | e04060dea509a1d657c8f64638c04b69744f8caf (patch) | |
| tree | 501a8438cf8af0c27dd73a5b1126643028d85ff2 /meta-oe/recipes-shells/dash/dash_0.5.11.2.bb | |
| parent | 747161877824daae061bc4fb458f55ab033f62f4 (diff) | |
| download | meta-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.bb | 27 |
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 @@ | |||
| 1 | SUMMARY = "Small and fast POSIX-compliant shell" | ||
| 2 | HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/" | ||
| 3 | SECTION = "System Environment/Shells" | ||
| 4 | |||
| 5 | LICENSE = "BSD & GPLv2+" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e" | ||
| 7 | |||
| 8 | inherit autotools update-alternatives | ||
| 9 | |||
| 10 | SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz" | ||
| 11 | SRC_URI[md5sum] = "b9b71c72e40fdc4db9b4ffb81fc3bebc" | ||
| 12 | SRC_URI[sha256sum] = "00fb7d68b7599cc41ab151051c06c01e9500540183d8aa72116cb9c742bd6d5f" | ||
| 13 | |||
| 14 | EXTRA_OECONF += "--bindir=${base_bindir}" | ||
| 15 | |||
| 16 | ALTERNATIVE_${PN} = "sh" | ||
| 17 | ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" | ||
| 18 | ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash" | ||
| 19 | ALTERNATIVE_PRIORITY = "10" | ||
| 20 | |||
| 21 | pkg_postinst_${PN} () { | ||
| 22 | grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells | ||
| 23 | } | ||
| 24 | |||
| 25 | pkg_postrm_${PN} () { | ||
| 26 | printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells | ||
| 27 | } | ||
