89b2018d80
These formulae all compile and run with LLVM build >= 2335. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
21 lines
458 B
Ruby
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
|