aboutsummaryrefslogtreecommitdiff
path: root/core/gzip/build
blob: aecc904ae9952164a8586f4e7d8eeaba0f205f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

[ "$CPT_CROSS_TRIPLET" ] &&
    CC="$CPT_CROSS_TRIPLET-cc -L$CPT_ROOT/usr/lib -isystem -isystem $CPT_ROOT/usr/include"
make CC="${CC:-cc} -static"

install -Dm755 pigz   "$1/usr/bin/pigz"
install -Dm644 pigz.1 "$1/usr/share/man/man1/pigz.1"

ln -sf pigz   "$1/usr/bin/gzip"
ln -sf pigz.1 "$1/usr/share/man/man1/gzip.1"