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(+) --- core/pigz/.footprint | 9 +++++++++ core/pigz/.signature | 6 ++++++ core/pigz/MAKEPKG | 24 ++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 core/pigz/.footprint create mode 100644 core/pigz/.signature create mode 100644 core/pigz/MAKEPKG (limited to 'core/pigz') diff --git a/core/pigz/.footprint b/core/pigz/.footprint new file mode 100644 index 0000000..a750d25 --- /dev/null +++ b/core/pigz/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/pigz +lrwxrwxrwx root/root bin/unpigz -> pigz +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +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/pigz.1.gz +lrwxrwxrwx root/root usr/share/man/man1/unpigz.1.gz -> pigz.1.gz diff --git a/core/pigz/.signature b/core/pigz/.signature new file mode 100644 index 0000000..2ef2a10 --- /dev/null +++ b/core/pigz/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mNy7Bi43/gGPnv0MvQxzW5FbKIlYfK/rahqZLQhKhwUcznCoSclFHhGjSx3URQF39NiDwpWK35FP69md17CVxAM= + +SHA256 (MAKEPKG) = c3ff9c245f01aa9730c908ce52fa3966b50c24f4a27841f5f19f80c6e0e6763e +SHA256 (.footprint) = 6a080f02c0680640937203670341ab0c0ba769aca932c9ce63a903436d5d2b69 +SHA256 (pigz-2.8.tar.gz) = eb872b4f0e1f0ebe59c9f7bd8c506c4204893ba6a8492de31df416f0d5170fd0 +SHA256 (pigz#2.8-2.pkg.tar.gz) = 54a38ca6c92b54386a97ce9b242788587be9a68eb9471e669da7f00bf94f3a6c diff --git a/core/pigz/MAKEPKG b/core/pigz/MAKEPKG new file mode 100644 index 0000000..40e39ce --- /dev/null +++ b/core/pigz/MAKEPKG @@ -0,0 +1,24 @@ +#!/bin/mkpkg +# description: Parallel implementation of the gzip compressor +# url: https://www.zlib.net/pigz +name=pigz +version=2.8 +release=2 +depends=(zlib) +source=(https://www.zlib.net/$name/$name-$version.tar.gz) +sha256sums=( + "eb872b4f0e1f0ebe59c9f7bd8c506c4204893ba6a8492de31df416f0d5170fd0" +) +build() { + cd $name-$version + make CC="${CC:-cc}" CFLAGS="${CFLAGS:--O2}" LDFLAGS="$LDFLAGS" + install -Dm755 pigz $PKG/bin/pigz + ln -s pigz $PKG/bin/unpigz + install -Dm644 pigz.1 $PKG/usr/share/man/man1/pigz.1 + ln -s pigz.1 $PKG/usr/share/man/man1/unpigz.1 +} +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} +# vim: filetype=sh -- cgit v1.3.1