diff options
Diffstat (limited to 'meta-oe/recipes-extended/parallel/parallel_20250522.bb')
-rw-r--r-- | meta-oe/recipes-extended/parallel/parallel_20250522.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/parallel/parallel_20250522.bb b/meta-oe/recipes-extended/parallel/parallel_20250522.bb new file mode 100644 index 0000000000..79ea168675 --- /dev/null +++ b/meta-oe/recipes-extended/parallel/parallel_20250522.bb | |||
@@ -0,0 +1,39 @@ | |||
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 = " \ | ||
9 | file://LICENSES/CC-BY-SA-4.0.txt;md5=7130783469368ceb248a4f03e89ea4b8 \ | ||
10 | file://LICENSES/GFDL-1.3-or-later.txt;md5=e0771ae6a62dc8a2e50b1d450fea66b7 \ | ||
11 | file://LICENSES/GPL-3.0-or-later.txt;md5=8da5784ab1c72e63ac74971f88658166 \ | ||
12 | " | ||
13 | |||
14 | SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.bz2" | ||
15 | SRC_URI[sha256sum] = "b4b28f475f8cff8bb6ed4b03cc5a67041f18fc73fa256923b23181b56afdb2cb" | ||
16 | |||
17 | inherit autotools bash-completion | ||
18 | |||
19 | PACKAGES += "${PN}-zsh-completion" | ||
20 | FILES:${PN}-zsh-completion = "${datadir}/zsh" | ||
21 | |||
22 | RDEPENDS:${PN} = " \ | ||
23 | perl \ | ||
24 | perl-module-file-basename \ | ||
25 | perl-module-file-glob \ | ||
26 | perl-module-file-path \ | ||
27 | perl-module-file-temp \ | ||
28 | perl-module-filehandle \ | ||
29 | perl-module-getopt-long \ | ||
30 | perl-module-io-select \ | ||
31 | perl-module-ipc-open3 \ | ||
32 | perl-module-posix \ | ||
33 | perl-module-symbol \ | ||
34 | perl-module-thread-queue \ | ||
35 | perl-module-threads \ | ||
36 | perl-module-threads-shared \ | ||
37 | " | ||
38 | |||
39 | BBCLASSEXTEND = "native" | ||