aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pbzip2.rb
blob: 331d492660c3f9dcd1ac6f5e46f85dc0f4b43651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Pbzip2 <Formula
  url 'http://compression.ca/pbzip2/pbzip2-1.1.1.tar.gz'
  homepage 'http://compression.ca/pbzip2/'
  md5 'b354422759da7113da366aad1876ed5d'

  def install
    fails_with_llvm
    
    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