8 lines
221 B
Bash
8 lines
221 B
Bash
export GZIP_VERSION=1.14
|
|
|
|
IFS='.' read -r GZIP_VERSION_MAJOR GZIP_VERSION_MINOR <<< $GZIP_VERSION
|
|
export GZIP_VERSION_MAJOR GZIP_VERSION_MINOR
|
|
|
|
export GZIP_URL=https://mirror.ufs.ac.za/gnu/gzip/gzip-$GZIP_VERSION.tar.xz
|
|
|