Files
meta-openembedded/meta-oe/recipes-devtools/makeself/makeself_2.5.0.bb
T
Alexander Kanavin fc78d37ff0 meta-openembedded/all: adapt to UNPACKDIR changes
Please see
https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265
for what changes are needed, and sed commands that can be used to make them en masse.

I've verified that bitbake -c patch world works with these, but did not run a world
build; the majority of recipes shouldn't need further fixups, but if there are
some that still fall out, they can be fixed in followups.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-06-25 06:44:52 -07:00

28 lines
851 B
BlitzBasic

SUMMARY = "A self-extracting archiving tool for Unix systems, in 100% shell script."
DESCRIPTION = "\
makeself.sh is a small shell script that generates a self-extractable \
compressed tar archive from a directory. The resulting file appears as \
a shell script (many of those have a .run suffix), and can be launched as is.\
"
HOMEPAGE = "https://makeself.io/"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "\
git://github.com/megastep/${BPN}.git;protocol=https;branch=master \
"
SRCREV = "09488c50c6bdc40aec8e3a9b23a539c5054a634c"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/makeself.sh ${D}${bindir}/
install -m 0755 ${S}/makeself-header.sh ${D}${bindir}/
}
BBCLASSEXTEND = "native"