Formula for pigz parallel gzipper.

master
Adam Vandenberg 2009-10-16 15:59:31 -07:00
parent a6f3dc0fc2
commit e689d797e9
1 changed files with 13 additions and 0 deletions

13
Formula/pigz.rb Normal file
View File

@ -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