mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
16 lines
314 B
Bash
Executable File
16 lines
314 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make CC="${CC:-cc} -static"
|
|
|
|
mkdir -p \
|
|
"$1/usr/bin" \
|
|
"$1/usr/share/man/man1"
|
|
|
|
cp -f pigz unpigz "$1/usr/bin"
|
|
cp -f pigz.1 "$1/usr/share/man/man1"
|
|
|
|
ln -sf pigz "$1/usr/bin/gzip"
|
|
ln -sf pigz "$1/usr/bin/zcat"
|
|
ln -sf unpigz "$1/usr/bin/gunzip"
|
|
ln -sf pigz.1 "$1/usr/share/man/man1/gzip.1"
|