homebrew-core/Formula/pbzip2.rb

22 lines
458 B
Ruby
Raw Normal View History

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