0

我想为 yocto 发行版编译我的颤振桌面应用程序,所以我不知何故需要访问颤振构建。我如何在 do_compile(){} 中使用颤振?它安装在我用来构建 yocto 映像的 docker 容器中。

食谱.bb

SUMMARY = "larning-installer recipe"
DESCRIPTION = "Larning installer app for installing other larning software"
SRCREV= "aa237f9ad19436b61b2f930721837682a637759b"
LICENSE="GPLv3"
LIC_FILES_CHKSUM = "file://src/LICENSE;md5=442763063122646a01b61b4839320293"

PV="0.0.1+git${SRCPV}"
PR="r1"

SRC_URI="git://gitlab.com/larning/installer.git \
            file://config.json"

S = "${WORKDIR}"
FILES_${PN} += "${bindir}"

do_configure() {
    rm git/assets/config.json
    mv config.json git/assets/
}

do_compile() {
    cd git
    flutter build linux
    cd ..
}

do_install() {
    install -d ${D}${bindir}
    install -m 0755 git/build/release/bundle/installer ${D}${bindir}
}
4

1 回答 1

0

您必须向该工具添加构建时间依赖项,您必须为此使用 DEPENDS 变量。

DEPENDS += "flutter-engine-native"

克隆后将 meta-flutter 层添加到您的 bblayers.conf 中。

https://layers.openembedded.org/layerindex/branch/zeus/layer/meta-flutter/

于 2020-10-01T07:46:22.373 回答