summaryrefslogtreecommitdiff
path: root/repo/core/gzip.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 23:29:58 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 23:29:58 +0100
commit7ff38024bec68fe70fb6eec0f5cd16188507558f (patch)
treed9f366b28b7d31ddbe3057669474f58962541a68 /repo/core/gzip.xibuild
parent76a1447eb1599f23165806b4ead10c5294039d05 (diff)
added all lfs packages
Diffstat (limited to 'repo/core/gzip.xibuild')
-rw-r--r--repo/core/gzip.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/gzip.xibuild b/repo/core/gzip.xibuild
new file mode 100644
index 0000000..09af6a4
--- /dev/null
+++ b/repo/core/gzip.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(glibc bash less)
+
+SOURCE=https://ftp.gnu.org/gnu/gzip/gzip-1.11.zip
+DESC="GNU compression utilities"
+
+build () {
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}