mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 05:19:40 +01:00
In order to have a stand-alone editor in oe-core, bring in vim from meta-openembedded/meta-oe. This imports the recipes as of git commit: commit 41f3f8165bde3eb4f8bcf6dddbaca0d3b760c70b Author: Mark Hatle <mark.hatle@windriver.com> Date: Thu Feb 28 09:39:19 2019 +0800 vim: remove xfce vim bbappend Changing the behavior of a recipe by including a layer is not allowed by the yocto-check-layer script. (From OE-Core rev: cc2022ad369a74ee3f60c345778e4fe206f5df36) Signed-off-by: Tom Rini <trini@konsulko.com> -- Changes in v3: - Catch vim-tiny too (thanks Richard!) Changes in v2: - List self as maintainer Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
285 B
BlitzBasic
16 lines
285 B
BlitzBasic
require vim_${PV}.bb
|
|
|
|
SUMMARY += " (with tiny features)"
|
|
|
|
PROVIDES_remove = "xxd"
|
|
ALTERNATIVE_${PN}_remove = "xxd"
|
|
|
|
PACKAGECONFIG += "tiny"
|
|
|
|
do_install() {
|
|
install -D -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
|
|
}
|
|
|
|
ALTERNATIVE_PRIORITY = "90"
|
|
ALTERNATIVE_TARGET = "${bindir}/vim.tiny"
|