diff options
| author | Jan Vermaete <jan.vermaete@gmail.com> | 2022-08-26 21:54:03 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-08-27 07:37:46 -0700 |
| commit | bf5463dda715e87a70dd160b2b3efe8e469c4ecb (patch) | |
| tree | 9e82326070895c369bd48aba11c32ff9d26e9d6f | |
| parent | 4db814180c1646af3186a0a095fe41afe9474557 (diff) | |
| download | meta-openembedded-bf5463dda715e87a70dd160b2b3efe8e469c4ecb.tar.gz | |
makeself: added makeself as new recipe
Based on the older recipe of intel-iot-refkit.
Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-devtools/makeself/makeself_2.4.5.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/makeself/makeself_2.4.5.bb b/meta-oe/recipes-devtools/makeself/makeself_2.4.5.bb new file mode 100644 index 0000000000..e0dfc3dae3 --- /dev/null +++ b/meta-oe/recipes-devtools/makeself/makeself_2.4.5.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "A self-extracting archiving tool for Unix systems, in 100% shell script." | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | makeself.sh is a small shell script that generates a self-extractable \ | ||
| 4 | compressed tar archive from a directory. The resulting file appears as \ | ||
| 5 | a shell script (many of those have a .run suffix), and can be launched as is.\ | ||
| 6 | " | ||
| 7 | HOMEPAGE = "https://makeself.io/" | ||
| 8 | LICENSE = "GPL-2.0-only" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 10 | |||
| 11 | SRC_URI = "\ | ||
| 12 | git://git@github.com/megastep/makeself.git;protocol=https;branch=master \ | ||
| 13 | " | ||
| 14 | |||
| 15 | SRCREV = "5742be6410bfad2c619fb1e98bf795e8fa0913c7" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | |||
| 19 | do_configure[noexec] = "1" | ||
| 20 | do_compile[noexec] = "1" | ||
| 21 | |||
| 22 | do_install() { | ||
| 23 | install -d ${D}${bindir} | ||
| 24 | install -m 0755 ${S}/makeself.1 ${D}${bindir}/ | ||
| 25 | install -m 0755 ${S}/makeself.sh ${D}${bindir}/ | ||
| 26 | install -m 0755 ${S}/makeself-header.sh ${D}${bindir}/ | ||
| 27 | } | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native" | ||
