mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 06:49:39 +01:00
There is no point in downloading a tarball with no clear upstream (other than icecc itself) and then patching it. Rather put new script in the source tree. (From OE-Core rev: 409fa8ca4d37ad407faaa2a8935e9d2bb89776c9) Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
630 B
BlitzBasic
26 lines
630 B
BlitzBasic
DESCRIPTION = "This is a modified version of the icecc-create-env script in order to\
|
|
make it work with OE."
|
|
SECTION = "base"
|
|
PRIORITY = "optional"
|
|
# source file has just a "GPL" word, but upstream is GPLv2+.
|
|
# most probably just GPL would be a mistake
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://icecc-create-env;beginline=2;endline=5;md5=ae1df3d6a058bfda40b66094c5f6065f"
|
|
|
|
PR = "r2"
|
|
|
|
DEPENDS = ""
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
inherit native
|
|
|
|
PATCHTOOL = "patch"
|
|
SRC_URI = "file://icecc-create-env"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 0755 ${WORKDIR}/icecc-create-env ${D}/${bindir}
|
|
}
|