summaryrefslogtreecommitdiff
path: root/opt/parallel/MAKEPKG
diff options
context:
space:
mode:
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