20 lines
461 B
Ruby
20 lines
461 B
Ruby
require 'formula'
|
|
|
|
class Pv < Formula
|
|
homepage 'http://www.ivarch.com/programs/pv.shtml'
|
|
url 'http://www.ivarch.com/programs/sources/pv-1.5.2.tar.bz2'
|
|
sha1 '0ca480d0ef2400bb9ebe9a992e011a9f004f42b8'
|
|
|
|
depends_on 'gettext'
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|