diff options
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.bb | 27 |
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 @@ | |||
| 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] = "027236e48b9202607b1418fee42c473e" | ||
| 12 | SRC_URI[sha256sum] = "4dd9a6ed5fe7546095157918fe5d784bb0b7887ae13de50e1e2d11e1b5a391cb" | ||
| 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 | } | ||
