diff options
author | Mike Nicholson <mike.nicholson@multitech.com> | 2020-04-24 09:07:03 -0500 |
---|---|---|
committer | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2020-05-21 10:49:34 +0300 |
commit | 7ea5fdf203703d26eac687bafe26f5a6da70901e (patch) | |
tree | 988ebf840149f90362c3094bf24cbb8b676b76b1 /recipes-core | |
parent | 64a0f98292a50db63febbc459b242a1fbbfb1708 (diff) | |
download | meta-mlinux-7ea5fdf203703d26eac687bafe26f5a6da70901e.tar.gz meta-mlinux-7ea5fdf203703d26eac687bafe26f5a6da70901e.tar.bz2 meta-mlinux-7ea5fdf203703d26eac687bafe26f5a6da70901e.zip |
Add startpar
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/startpar/startpar_0.64.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-core/startpar/startpar_0.64.bb b/recipes-core/startpar/startpar_0.64.bb new file mode 100644 index 0000000..608fe20 --- /dev/null +++ b/recipes-core/startpar/startpar_0.64.bb @@ -0,0 +1,25 @@ +SUMMARY = "run processes in parallel and multiplex their output" +DESCRIPTION = "startpar is used to run multiple run-level scripts in parallel." +HOMEPAGE = "http://savannah.nongnu.org/projects/sysvinit" +SECTION = "base" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" +PR = "r0" + +RDEPENDS_${PN} = "sysvinit-inittab" + +SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/startpar-${PV}.tar.xz" + +# TODO - need to add dependency files + +SRC_URI[md5sum] = "0fe57dcef653d87650133d6d25a90f97" +SRC_URI[sha256sum] = "482a6869a5a5413d305f3073a0d831cca14bf7634554194419ca7015d5dd5731" + +S = "${WORKDIR}/${PN}" + +FILES_${PN} = "${base_sbindir}/startpar" + +do_install_append () { + install -d ${D}${base_sbindir} + install -m 755 ${S}/startpar ${D}${base_sbindir}/ +} |