2b376d7dd4
Closes Homebrew/homebrew#9657. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
312 B
Ruby
14 lines
312 B
Ruby
require 'formula'
|
|
|
|
class Pigz < Formula
|
|
url 'http://www.zlib.net/pigz/pigz-2.2.3.tar.gz'
|
|
homepage 'http://www.zlib.net/pigz/'
|
|
md5 '8330a6c6a3e5f1954687aaba4b973a6f'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install ["pigz", "unpigz"]
|
|
man1.install ["pigz.1"]
|
|
ln_s 'pigz.1', man1+'unpigz.1'
|
|
end
|
|
end
|