summaryrefslogtreecommitdiff
path: root/core/gzip
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 /core/gzip
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/gzip')
-rw-r--r--core/gzip/.footprint11
-rw-r--r--core/gzip/.signature6
-rw-r--r--core/gzip/MAKEPKG35
3 files changed, 52 insertions, 0 deletions
diff --git a/core/gzip/.footprint b/core/gzip/.footprint
new file mode 100644
index 0000000..a10e0ee
--- /dev/null
+++ b/core/gzip/.footprint
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/gunzip
+-rwxr-xr-x root/root bin/gzip
+-rwxr-xr-x root/root bin/zcat
+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/gunzip.1.gz
+-rw-r--r-- root/root usr/share/man/man1/gzip.1.gz
+-rw-r--r-- root/root usr/share/man/man1/zcat.1.gz
diff --git a/core/gzip/.signature b/core/gzip/.signature
new file mode 100644
index 0000000..8eb2c7a
--- /dev/null
+++ b/core/gzip/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mEDMGPJBah4n2gVyEjvtgDSqZLdj4qRwHaao3DPxLYIveQqvu3n6hS1XYJru/weni9teW7jKK/KKAPjjuSKmeAI=
+
+SHA256 (MAKEPKG) = 86cb982fd7c09352b5bbdff108581029fa8817fee84be4c814acc99c25eea0a0
+SHA256 (.footprint) = 681d01236c054410cf6d6899bb192dd2d8f36f2959ee2bb0f86b16b44a835bae
+SHA256 (gzip-1.15.tar.xz) = 9aa0cc780dec156b8282844833b342ab7cb08c25d2cd9a1869cdd0df31deff48
+SHA256 (gzip#1.15-2.pkg.tar.gz) = 3faba96d75de51e85528c17a285a2343619563b92bf9a24ebb68f68f48cac5a8
diff --git a/core/gzip/MAKEPKG b/core/gzip/MAKEPKG
new file mode 100644
index 0000000..d616d59
--- /dev/null
+++ b/core/gzip/MAKEPKG
@@ -0,0 +1,35 @@
+#!/bin/mkpkg
+# description: GNU compression utility
+# url: https://www.gnu.org/software/gzip
+
+name=gzip
+version=1.15
+release=2
+source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
+
+sha256sums=(
+ "9aa0cc780dec156b8282844833b342ab7cb08c25d2cd9a1869cdd0df31deff48"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/ \
+ --bindir=/bin \
+ --mandir=/usr/share/man \
+ --disable-nls
+ make
+ make install DESTDIR=$PKG
+ rm -rf $PKG/share
+ for f in gzexe uncompress zcmp zdiff zforce zegrep zfgrep zgrep zless zmore znew; do
+ rm -f $PKG/bin/$f
+ rm -f $PKG/usr/share/man/man1/$f.1*
+ done
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh