summaryrefslogtreecommitdiff
path: root/opt/parallel/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/parallel/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/parallel/MAKEPKG')
-rw-r--r--opt/parallel/MAKEPKG34
1 files changed, 34 insertions, 0 deletions
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