aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pigz.rb
blob: 71078603fe4e12f6cec017ddcdc595c42dfb3f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Pigz <Formula
  url 'http://www.zlib.net/pigz/pigz-2.1.6.tar.gz'
  homepage 'http://www.zlib.net/pigz/'
  md5 'cbe9030c4be3d0ef2438ee5f8b169ca4'

  def install
    system "make"
    bin.install "pigz"
    bin.install "unpigz"
  end
end