homebrew-core/Formula/pbzip2.rb
Jack Nagel 89b2018d80 Update bare fails_with_llvm calls
These formulae all compile and run with LLVM build >= 2335.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-28 15:52:44 -05:00

21 lines
458 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 :build => 2334
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