|
root / base / gzip
gzip Plain Text 39 lines 746 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/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 <chris.tusa@leafscale.com>"
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