diff options
Diffstat (limited to 'opt/parallel')
| -rw-r--r-- | opt/parallel/.footprint | 45 | ||||
| -rw-r--r-- | opt/parallel/.signature | 6 | ||||
| -rw-r--r-- | opt/parallel/MAKEPKG | 34 |
3 files changed, 85 insertions, 0 deletions
diff --git a/opt/parallel/.footprint b/opt/parallel/.footprint new file mode 100644 index 0000000..b328fd3 --- /dev/null +++ b/opt/parallel/.footprint @@ -0,0 +1,45 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/env_parallel +-rwxr-xr-x root/root usr/bin/env_parallel.ash +-rwxr-xr-x root/root usr/bin/env_parallel.bash +-rwxr-xr-x root/root usr/bin/env_parallel.csh +-rwxr-xr-x root/root usr/bin/env_parallel.dash +-rwxr-xr-x root/root usr/bin/env_parallel.fish +-rwxr-xr-x root/root usr/bin/env_parallel.ksh +-rwxr-xr-x root/root usr/bin/env_parallel.mksh +-rwxr-xr-x root/root usr/bin/env_parallel.pdksh +-rwxr-xr-x root/root usr/bin/env_parallel.sh +-rwxr-xr-x root/root usr/bin/env_parallel.tcsh +-rwxr-xr-x root/root usr/bin/env_parallel.zsh +-rwxr-xr-x root/root usr/bin/niceload +-rwxr-xr-x root/root usr/bin/parallel +-rwxr-xr-x root/root usr/bin/parcat +-rwxr-xr-x root/root usr/bin/parset +-rwxr-xr-x root/root usr/bin/parsort +-rwxr-xr-x root/root usr/bin/sql +lrwxrwxrwx root/root usr/bin/sem -> parallel +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/bash-completion/ +drwxr-xr-x root/root usr/share/bash-completion/completions/ +-rw-r--r-- root/root usr/share/bash-completion/completions/parallel +drwxr-xr-x root/root usr/share/doc/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/env_parallel.1.gz +-rw-r--r-- root/root usr/share/man/man1/niceload.1.gz +-rw-r--r-- root/root usr/share/man/man1/parallel.1.gz +-rw-r--r-- root/root usr/share/man/man1/parcat.1.gz +-rw-r--r-- root/root usr/share/man/man1/parset.1.gz +-rw-r--r-- root/root usr/share/man/man1/parsort.1.gz +-rw-r--r-- root/root usr/share/man/man1/sem.1.gz +-rw-r--r-- root/root usr/share/man/man1/sql.1.gz +drwxr-xr-x root/root usr/share/man/man7/ +-rw-r--r-- root/root usr/share/man/man7/parallel_alternatives.7.gz +-rw-r--r-- root/root usr/share/man/man7/parallel_book.7.gz +-rw-r--r-- root/root usr/share/man/man7/parallel_design.7.gz +-rw-r--r-- root/root usr/share/man/man7/parallel_examples.7.gz +-rw-r--r-- root/root usr/share/man/man7/parallel_tutorial.7.gz +drwxr-xr-x root/root usr/share/zsh/ +drwxr-xr-x root/root usr/share/zsh/site-functions/ +-rw-r--r-- root/root usr/share/zsh/site-functions/_parallel diff --git a/opt/parallel/.signature b/opt/parallel/.signature new file mode 100644 index 0000000..1c7740b --- /dev/null +++ b/opt/parallel/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mGRfPgZVs5GtzvFiATbwBsqGafKYgBfoeMx4v0BkSyEGJd1zpwwWq17K/pI69E9wF95PCkQnzu5mwszAbF6zsgU= + +SHA256 (MAKEPKG) = a1f3a901ab2e0a40537e05ddcadb01c774aea923c4aa044176134da8170930cc +SHA256 (.footprint) = c55ac7ec4fc67fe399cf9cf60716dae48788f0c15e08dbf59ffdd003cc7ea83c +SHA256 (parallel-20260922.tar.bz2) = 54837e9e8c16134a3c2e95f91c5fe2f7893d4cc89f252b26735713ceca866387 +SHA256 (parallel#20260922-1.pkg.tar.gz) = bbba242dde10a486ab0e13e3ffc5fc812a3effed10f3a5d24a54d37350f18075 diff --git a/opt/parallel/MAKEPKG b/opt/parallel/MAKEPKG new file mode 100644 index 0000000..2c599f4 --- /dev/null +++ b/opt/parallel/MAKEPKG @@ -0,0 +1,34 @@ +#!/bin/mkpkg +# description: Shell tool for executing jobs in parallel +# url: https://www.gnu.org/software/parallel/ + +name=parallel +version=20260922 +release=1 +source=(https://ftp.gnu.org/gnu/parallel/parallel-${version}.tar.bz2) + +sha256sums=( + "54837e9e8c16134a3c2e95f91c5fe2f7893d4cc89f252b26735713ceca866387" +) + +build() { + cd parallel-${version} + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --docdir=/usr/share/doc/${name} + + make + make DESTDIR=${PKG} install + + # Remove citation nag files + rm -rf ${PKG}/usr/share/doc/${name} +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
