aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pv.rb
blob: ee1e3ad37f6def5f27099c1030aec1d11fa9a66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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