From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- opt/parallel/MAKEPKG | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 opt/parallel/MAKEPKG (limited to 'opt/parallel/MAKEPKG') 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 -- cgit v1.3.1