mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
13 lines
322 B
Bash
Executable File
13 lines
322 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make CC="${CC:-cc} -static"
|
|
|
|
install -Dm755 pigz "$1/usr/bin/pigz"
|
|
install -Dm755 unpigz "$1/usr/bin/unpigz"
|
|
install -Dm644 pigz.1 "$1/usr/share/man/man1/pigz.1"
|
|
|
|
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"
|