88779ade49
Closes Homebrew/homebrew#14653.
19 lines
513 B
Ruby
19 lines
513 B
Ruby
require 'formula'
|
|
|
|
class Pv < Formula
|
|
url 'http://www.ivarch.com/programs/sources/pv-1.2.0.tar.bz2'
|
|
homepage 'http://www.ivarch.com/programs/pv.shtml'
|
|
sha1 'bb921bca55347a1b7c6f74ce6b70cff0325499d7'
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--disable-nls"
|
|
system "make install"
|
|
end
|
|
end
|