summaryrefslogtreecommitdiff
path: root/core/pigz
diff options
context:
space:
mode:
Diffstat (limited to 'core/pigz')
-rw-r--r--core/pigz/.footprint9
-rw-r--r--core/pigz/.signature6
-rw-r--r--core/pigz/MAKEPKG24
3 files changed, 39 insertions, 0 deletions
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