diff options
Diffstat (limited to 'core/pigz/build')
-rwxr-xr-x | core/pigz/build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/pigz/build b/core/pigz/build new file mode 100755 index 00000000..8d190a07 --- /dev/null +++ b/core/pigz/build @@ -0,0 +1,9 @@ +#!/bin/sh -e + +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" |