diff options
| author | Adam Vandenberg | 2009-10-16 15:59:31 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2009-10-16 15:59:31 -0700 |
| commit | ba10442a1f720a906672c5fd7b37887fbc07cfbc (patch) | |
| tree | 526a4784796a10b283ea6b7021b8b216d79a23ff /Library | |
| parent | 7c4db40017181f7fb706746320a24f0305a1aee6 (diff) | |
| download | homebrew-ba10442a1f720a906672c5fd7b37887fbc07cfbc.tar.bz2 | |
Formula for pigz parallel gzipper.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pigz.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/pigz.rb b/Library/Formula/pigz.rb new file mode 100644 index 000000000..b894b12ce --- /dev/null +++ b/Library/Formula/pigz.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Pigz <Formula + url 'http://www.zlib.net/pigz/pigz-2.1.5.tar.gz' + homepage 'http://www.zlib.net/pigz/' + md5 '580873165ef3a369674f0c0af4c96d67' + + def install + system "make" + bin.install "pigz" + bin.install "unpigz" + end +end |
