blob: 4fd1a52c54316dc096b45ca6db01928105e54e84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Pigz < Formula
homepage 'http://www.zlib.net/pigz/'
url 'http://www.zlib.net/pigz/pigz-2.2.3.tar.gz'
md5 '8330a6c6a3e5f1954687aaba4b973a6f'
def install
system "make"
bin.install "pigz", "unpigz"
man1.install "pigz.1"
ln_s 'pigz.1', man1+'unpigz.1'
end
end
|