mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
28 lines
951 B
BlitzBasic
28 lines
951 B
BlitzBasic
SUMMARY = "Small and fast POSIX-compliant shell"
|
|
HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/"
|
|
SECTION = "System Environment/Shells"
|
|
|
|
LICENSE = "BSD & GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e"
|
|
|
|
inherit autotools update-alternatives
|
|
|
|
SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz"
|
|
SRC_URI[md5sum] = "c7016b513f701d88c70b3082eb183581"
|
|
SRC_URI[sha256sum] = "62b9f1676ba6a7e8eaec541a39ea037b325253240d1f378c72360baa1cbcbc2a"
|
|
|
|
EXTRA_OECONF += "--bindir=${base_bindir}"
|
|
|
|
ALTERNATIVE:${PN} = "sh"
|
|
ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh"
|
|
ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash"
|
|
ALTERNATIVE_PRIORITY = "10"
|
|
|
|
pkg_postinst:${PN} () {
|
|
grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells
|
|
}
|
|
|
|
pkg_postrm:${PN} () {
|
|
printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
|
|
}
|