homebrew-core/Formula/pbzip2.rb
Romain Muller 09481ba57a pbzip2 1.1.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-06 19:31:49 -07:00

21 lines
443 B
Ruby

require 'formula'
class Pbzip2 < Formula
url 'http://compression.ca/pbzip2/pbzip2-1.1.4.tar.gz'
homepage 'http://compression.ca/pbzip2/'
md5 '797e3ae5c6293a55e3e97fefb11cf494'
fails_with_llvm
def install
inreplace "Makefile" do |s|
s.change_make_var! 'PREFIX', prefix
s.gsub! "/man/", "/share/man/"
# Per fink and macport:
s.gsub! "-pthread -lpthread", ""
end
system "make install"
end
end