homebrew-core/Formula/pbzip2.rb

22 lines
513 B
Ruby
Raw Normal View History

2010-01-30 18:38:19 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Pbzip2 < Formula
2010-01-30 18:38:19 +00:00
homepage 'http://compression.ca/pbzip2/'
2014-02-20 21:57:46 +00:00
url 'http://compression.ca/pbzip2/pbzip2-1.1.8.tar.gz'
sha1 '6957483690f00c33ffeabbe0e9e6475098820cd5'
2010-01-30 18:38:19 +00:00
fails_with :llvm do
build 2334
end
2011-03-21 21:24:22 +00:00
def install
inreplace "Makefile", "$(PREFIX)/man", "$(PREFIX)/share/man"
system "make", "PREFIX=#{prefix}",
"CC=#{ENV.cxx}",
"CFLAGS=#{ENV.cflags}",
"PREFIX=#{prefix}",
"install"
2010-01-30 18:38:19 +00:00
end
end