2010-01-30 18:38:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pbzip2 <Formula
|
2010-06-15 22:53:42 +00:00
|
|
|
url 'http://compression.ca/pbzip2/pbzip2-1.1.1.tar.gz'
|
2010-01-30 18:38:19 +00:00
|
|
|
homepage 'http://compression.ca/pbzip2/'
|
2010-06-15 22:53:42 +00:00
|
|
|
md5 'b354422759da7113da366aad1876ed5d'
|
2010-01-30 18:38:19 +00:00
|
|
|
|
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm
|
2010-01-30 18:38:19 +00:00
|
|
|
|
|
|
|
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
|