blob: 7831021b8ff539903341ce3750372725b5cdec94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
DEPS=(glibc bash less)
PKG_VER=1.11
SOURCE=https://ftp.gnu.org/gnu/gzip/gzip-$PKG_VER.tar.xz
DESC="GNU compression utilities"
build () {
./configure --prefix=/usr
make
make DESTDIR=$PKG_DEST install
}
|