mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] (From OE-Core rev: bb05814335e7101bfd8df0a11dc18a044e867bed) Signed-off-by: Dorinda Bassey <dorindabassey@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
553 B
BlitzBasic
24 lines
553 B
BlitzBasic
SUMMARY = "Sets up distcc for compilation on the target device"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
SRC_URI = "file://distcc.sh"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
# Default to the host machine for a running qemu session
|
|
DISTCC_HOSTS ?= "192.168.7.1"
|
|
|
|
do_configure() {
|
|
sed -i "s%@DISTCC_HOSTS@%${DISTCC_HOSTS}%" distcc.sh
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/profile.d
|
|
install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/
|
|
}
|
|
|
|
RDEPENDS_${PN} = "distcc"
|