homebrew-core/Formula/pv.rb
nibbles 2bits 295c066a83 pv 1.3.9
- Upgrade to version 1.3.9
- enable gettext
- Works with superenv

Closes Homebrew/homebrew#16132.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-18 11:23:44 -08:00

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.3.9.tar.bz2'
sha1 '9ed32eb0c441f9699acd4091e096ca2f4bb6b5ea'
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