diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pbzip2.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/pbzip2.rb b/Library/Formula/pbzip2.rb new file mode 100644 index 000000000..0a614329d --- /dev/null +++ b/Library/Formula/pbzip2.rb @@ -0,0 +1,22 @@ +require 'formula' + +class Pbzip2 <Formula + url 'http://compression.ca/pbzip2/pbzip2-1.0.5.tar.gz' + homepage 'http://compression.ca/pbzip2/' + md5 'e2448d22ee29d1e6549ac58b98df11ab' + + def install + # Won't compile with LLVM + ENV.gcc_4_2 + + 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 |
