mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-15 19:19:40 +00:00
According to its copyright file, dash is only BSD-3-Clause. It has a build time tool from bash that's under the GPL, but only the tool's output is used, not the tool itself. So all compiled artefacts in dash appear to share the same licence. Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
898 B
BlitzBasic
27 lines
898 B
BlitzBasic
SUMMARY = "Small and fast POSIX-compliant shell"
|
|
HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/"
|
|
SECTION = "System Environment/Shells"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
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[sha256sum] = "6a474ac46e8b0b32916c4c60df694c82058d3297d8b385b74508030ca4a8f28a"
|
|
|
|
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
|
|
}
|