#!/bin/bash # Build script for GNU gzip set -e cd "$SRCDIR" ./configure \ --prefix=$PREFIX \ --build=$BUILD_TRIPLE \ --host=$BUILD_TRIPLE gmake -j${JOBS:-1} gmake install DESTDIR="$PKGDIR" # GNU Gzip - Compression utility # https://www.gnu.org/software/gzip/ [package] name = "gzip" version = "1.14" release = 1 description = "GNU gzip compression utility" url = "https://www.gnu.org/software/gzip/" license = "GPL-3.0" maintainer = "Chris Tusa " arch = "x86_64" [dependencies] runtime = [] build = [] [[source]] file = "gzip-1.14.tar.gz" urls = ["https://ftpmirror.gnu.org/gzip/gzip-1.14.tar.gz"] checksum = "613d6ea44f1248d7370c7ccdeee0dd0017a09e6c39de894b3c6f03f981191c6b" [build] parallel = true