diff options
Diffstat (limited to 'repo/core/gzip.xibuild')
-rw-r--r-- | repo/core/gzip.xibuild | 12 |
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 +} |