diff options
| author | Zhang Peng <peng.zhang1.cn@windriver.com> | 2024-11-06 19:03:11 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-06 07:15:01 -0800 |
| commit | 577b9758cffa1186002533a9ad77346e73163832 (patch) | |
| tree | b84e6ffcd8157056c7505be272ebcb359df9db23 | |
| parent | d5afdfe3af145797cef015aca1d3436dbd301bb6 (diff) | |
| download | meta-openembedded-577b9758cffa1186002533a9ad77346e73163832.tar.gz | |
parallel: Add recipe for GNU Parallel
This recipe adds the parallel package, a shell tool for executing jobs
in parallel using one or more computers.
Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-extended/parallel/parallel_20241022.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/parallel/parallel_20241022.bb b/meta-oe/recipes-extended/parallel/parallel_20241022.bb new file mode 100644 index 0000000000..e3cf0a6a7f --- /dev/null +++ b/meta-oe/recipes-extended/parallel/parallel_20241022.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "GNU Parallel - A shell tool for executing jobs in parallel using one or more computers" | ||
| 2 | DESCRIPTION = "GNU Parallel is a command-line tool for executing jobs in parallel on one or more computers. \ | ||
| 3 | It allows users to run multiple commands simultaneously, making it easier to process large batches of tasks." | ||
| 4 | |||
| 5 | HOMEPAGE = "https://www.gnu.org/software/parallel/" | ||
| 6 | LICENSE = "CC-BY-SA-4.0 & GFDL-1.3-or-later & GPL-3.0-or-later" | ||
| 7 | |||
| 8 | LIC_FILES_CHKSUM = "file://LICENSES/GPL-3.0-or-later.txt;md5=8da5784ab1c72e63ac74971f88658166 \ | ||
| 9 | file://LICENSES/CC-BY-SA-4.0.txt;md5=7130783469368ceb248a4f03e89ea4b8\ | ||
| 10 | file://LICENSES/GFDL-1.3-or-later.txt;md5=e0771ae6a62dc8a2e50b1d450fea66b7\ | ||
| 11 | " | ||
| 12 | |||
| 13 | SRC_URI = "https://ftp.gnu.org/gnu/parallel/parallel-${PV}.tar.bz2" | ||
| 14 | SRC_URI[sha256sum] = "6de22bf1c67f7f316670d21ed1a2a32f1214dfbd3e420939ba937925c0a57a12" | ||
| 15 | |||
| 16 | inherit autotools bash-completion | ||
| 17 | |||
| 18 | DEPENDS += "perl" | ||
| 19 | |||
| 20 | RDEPENDS:${PN} += "perl \ | ||
| 21 | perl-module-ipc-open3 \ | ||
| 22 | perl-module-getopt-long \ | ||
| 23 | perl-module-file-temp \ | ||
| 24 | perl-module-filehandle \ | ||
| 25 | perl-module-file-glob \ | ||
| 26 | " | ||
| 27 | do_install:append() { | ||
| 28 | rm -rf ${D}${datadir}/zsh | ||
| 29 | } | ||
