aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pigz.rb
blob: 554bb67445a385dd87fe4b35fc45fb4b2bac0346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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", "unpigz"]
  end
end