我想为 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}
}